Nightly schedule #45
This file contains hidden or 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 schedule | |
| # This workflow dispatches nightly-build.yml for each branch that needs a | |
| # nightly build. To add a new branch, just add it to the matrix below. | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| permissions: | |
| actions: write | |
| jobs: | |
| dispatch: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| branch: [master] | |
| steps: | |
| - run: gh workflow run nightly-build.yml --repo ${{ github.repository }} -f branch=${{ matrix.branch }} | |
| env: | |
| GH_TOKEN: ${{ github.token }} |