Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/nightly-dmg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ on:
schedule:
- cron: '0 4 * * *'
workflow_dispatch:
inputs:
version:
description: 'Version to bake into Info.plist and artifact names (defaults to nightly 150.0.1)'
required: false
default: '150.0.1'
type: string
push:
branches: [main]
paths:
Expand All @@ -24,7 +30,11 @@ jobs:

env:
MOZBUILD_STATE_PATH: ${{ github.workspace }}/.mozbuild
VERSION: 150.0.1
# A workflow_dispatch input overrides the nightly default; every other
# trigger (schedule, push) still ships a dev-versioned artifact. This
# closes the "release artifacts carry nightly version 150.0.1" root
# cause behind the plist-version-equals-tag gate rejection.
VERSION: ${{ inputs.version || '150.0.1' }}
RELEASE: 1
PROFILE: human-secure

Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/nightly-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ on:
schedule:
- cron: '0 5 * * *'
workflow_dispatch:
inputs:
version:
description: 'Version to bake into artifact names + Info metadata (defaults to nightly 150.0.1)'
required: false
default: '150.0.1'
type: string
push:
# anti-fingerprint-verify added so the compile can be triggered on this branch
# (workflow_dispatch only works from the default branch, which is behind).
Expand Down Expand Up @@ -69,7 +75,10 @@ jobs:

env:
MOZBUILD_STATE_PATH: ${{ github.workspace }}/.mozbuild
VERSION: 150.0.1
# workflow_dispatch input overrides for release cuts; other triggers get
# the nightly default. Root cause of the "release ships nightly version"
# bug that promotion-gate now catches.
VERSION: ${{ inputs.version || '150.0.1' }}
RELEASE: 1
PROFILE: human-secure

Expand Down
Loading