Skip to content

Nightly Build

Nightly Build #3

Workflow file for this run

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: write # Required by build.yml's update-build-version job (validated statically even when skipped)
id-token: write
jobs:
build-exp:
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