Fetch Contracts #3894
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fetch Contracts | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
- cron: '0 6 * * *' | |
- cron: '0 12 * * *' | |
- cron: '0 18 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- run: npm install | |
- run: npm run start | |
- run: | | |
git config --global user.name "edgedlt" | |
git config --global user.email "edgedlt@protonmail.com" | |
git add -A | |
git commit -m "update contracts.json" | |
git push |