Daily code.json update #994
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: "Daily code.json update" | |
on: | |
schedule: | |
# Run at 6:15am UTC every day | |
- cron: '15 6 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
run: | |
name: Run | |
runs-on: "ubuntu-latest" | |
needs: build | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Run code json generator | |
run: | | |
./bin/run-codejsongenerator.sh && echo "Run code json generator" | |
- name: Commit & Push | |
if: ${{ success() }} | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git fetch --depth=1 origin output | |
git worktree add -b output ../output origin/output | |
mv code.json ../output/code.json | |
cd ../output/ | |
git add code.json | |
git commit -m "Automated workflow from GitHub Actions" | |
git push origin output |