Change default buildkit image to Mirror in GHCR #16381
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: linux | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, labeled] | |
branches: | |
- main | |
- experimental/* | |
- feature/* | |
push: | |
branches: | |
- main | |
- experimental/* | |
- feature/* | |
workflow_dispatch: | |
inputs: | |
nightly: | |
description: 'Nightly workflow.' | |
required: true | |
type: boolean | |
default: false | |
jobs: | |
# This is default Chromium build config | |
linux-x64: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: linux | |
nightly: ${{ github.event.inputs.nightly }} | |
# This is default Cobalt build config | |
linux-cobalt: | |
uses: ./.github/workflows/main.yaml | |
permissions: | |
packages: write | |
pull-requests: write | |
with: | |
platform: linux-cobalt | |
nightly: ${{ github.event.inputs.nightly }} |