chore(deps): update ghcr.io/ublue-os/brew:latest docker digest to 47951ea (main) #453
Workflow file for this run
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: Testing Images | |
| on: | |
| merge_group: | |
| pull_request: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "**.md" | |
| - ".github/workflows/moderator.yml" | |
| - ".github/workflows/scorecard.yml" | |
| workflow_call: | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| build-image-testing: | |
| name: Build Testing Images | |
| uses: ./.github/workflows/reusable-build.yml | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write | |
| attestations: write | |
| artifact-metadata: write | |
| secrets: | |
| SIGNING_SECRET: ${{ secrets.SIGNING_SECRET }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| brand_name: ["aurora"] | |
| with: | |
| image_flavors: '["main", "nvidia-open"]' | |
| brand_name: ${{ matrix.brand_name }} | |
| stream_name: testing | |
| # FIXME: MAIN has no arm builds in ublue-os/akmods yet | |
| # https://github.com/ublue-os/akmods/pull/440 | |
| # architecture: '["aarch64","x86_64"]' | |
| architecture: '["x86_64"]' | |
| publish: ${{ github.event_name != 'pull_request' }} |