[pull] stable-f44 from main #4923
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: Latest Images | |
| on: | |
| push: | |
| branches: | |
| - stable-f44 | |
| paths-ignore: | |
| - "**.md" | |
| - ".github/workflows/moderator.yml" | |
| - ".github/workflows/scorecard.yml" | |
| merge_group: | |
| branches: | |
| - stable-f44 | |
| pull_request: | |
| branches: | |
| - stable-f44 | |
| paths-ignore: | |
| - "**.md" | |
| - ".github/workflows/moderator.yml" | |
| - ".github/workflows/scorecard.yml" | |
| workflow_call: | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| build-image-latest: | |
| name: Build Latest 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: latest | |
| # 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' }} | |
| generate-release: | |
| name: Generate Release | |
| needs: [build-image-latest] | |
| permissions: | |
| contents: write | |
| uses: ./.github/workflows/generate-release.yml | |
| with: | |
| stream_name: '["latest"]' |