Skip to content

Nightly Build

Nightly Build #1

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: read
id-token: write
jobs:
build-exp:

Check failure on line 26 in .github/workflows/nightly-build.yml

View workflow run for this annotation

GitHub Actions / Nightly Build

Invalid workflow file

The workflow is not valid. .github/workflows/nightly-build.yml (Line: 26, Col: 3): Error calling workflow 'MetaMask/metamask-mobile/.github/workflows/build.yml@50778c6cbf3edbfc08d690a0302dae7113393e0f'. The nested job 'update-build-version' is requesting 'contents: write', but is only allowed 'contents: read'.
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