-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (33 loc) · 995 Bytes
/
update.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
- name: Commit and push changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "Josh"
git add .
git commit -m "Automated changes" -a || echo "No changes to commit"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}