nightly_trigger_26.android #5
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_trigger_26.android | |
on: | |
schedule: | |
# GMT timezone. | |
- cron: '0 10 * * *' | |
workflow_dispatch: | |
jobs: | |
trigger_26: | |
permissions: | |
actions: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: kaidokert/[email protected] | |
with: | |
fetch-depth: 1 | |
ref: 26.android | |
persist-credentials: false | |
- name: Trigger Nightly | |
run: | | |
set -x | |
gh workflow run android_26.android --ref 26.android -f nightly=true | |
gh workflow run linux_26.android --ref 25.android -f nightly=true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |