nightly-build #1248
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: nightly-build | |
on: | |
schedule: | |
- cron: "15 4 * * *" | |
jobs: | |
trigger-snapcraft-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: trigger-build | |
- name: Log current date and time | |
run: echo `date` >> trigger-build.txt | |
- name: Commit changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "Github Action" | |
git add ./trigger-build.txt | |
git commit -m "trigger build" | |
- name: Push changes | |
run: | | |
git push "https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" HEAD:trigger-build | |