Skip to content

Update Contract

Update Contract #7

Workflow file for this run

name: Update Tutorials
on:
schedule:
# Runs at 05:00 UTC every day
- cron: "0 5 * * *"
workflow_dispatch:
inputs:
input1:
description: "Input 1 Description"
required: true
default: "default value"
jobs:
my_job:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Get version
id: versions_step
run: |
version_tag=$(node ./.github/scripts/fetchRelease.js)
echo "Output from Node.js script: $version_tag"
- name: Check and update tutorials
run: bash ./update_contract.sh $version_tag