Update binaries #43
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: Update binaries | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "42 1 * * 0" | |
jobs: | |
build-and-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cache ccache data | |
uses: actions/cache@v3 | |
with: | |
path: cache | |
key: ${{ runner.os }}-ccache | |
restore-keys: ${{ runner.os }}-ccache | |
- name: Rebuild binaries | |
run: | | |
./build.sh | |
- name: Commit changes | |
run: | | |
git add -A | |
git config user.email "builder@wokwi.com" | |
git config user.name "Wokwi Builder" | |
if ! git diff-index --quiet HEAD; then | |
git commit -m "chore: autobuild $(date -u +%Y-%m-%dT%H:%M:%SZ)" | |
fi | |
- name: Push changes | |
run: git push |