Nightly Build #1
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 Build | ||
| # Triggered by every push to chore/temp-nightly (which nightly-temp-branch-sync.yml | ||
| # force-pushes daily at 4 AM UTC to match main). | ||
| # | ||
| # [skip ci] commits (e.g. version bumps pushed by Bitrise's bump_version_code job via | ||
| # update-latest-build-version.yml) are automatically skipped by GitHub Actions, so | ||
| # this workflow will NOT double-trigger on those commits. | ||
| # | ||
| # skip_version_bump=true is passed to build.yml because Bitrise already owns the | ||
| # version bump for chore/temp-nightly during the parallel transition period. | ||
| # When Bitrise is deprecated, remove skip_version_bump: true and the version bump | ||
| # will be handled by build.yml as normal. | ||
| on: | ||
| push: | ||
| branches: | ||
| - chore/temp-nightly | ||
| workflow_dispatch: | ||
| permissions: | ||
| contents: read | ||
| id-token: write | ||
| jobs: | ||
| build-exp: | ||
|
Check failure on line 26 in .github/workflows/nightly-build.yml
|
||
| name: Nightly exp build (main-exp) | ||
| uses: ./.github/workflows/build.yml | ||
| with: | ||
| build_name: main-exp | ||
| platform: both | ||
| skip_version_bump: true | ||
| secrets: inherit | ||
| build-rc: | ||
| name: Nightly RC build (main-rc) | ||
| uses: ./.github/workflows/build.yml | ||
| with: | ||
| build_name: main-rc | ||
| platform: both | ||
| skip_version_bump: true | ||
| secrets: inherit | ||