fix(release): pin stable kernel for ZFS #4668
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: Stable Images | |
| on: | |
| merge_group: # Make Stable-Daily run on merge groups | |
| pull_request: | |
| branches: | |
| - main | |
| - testing | |
| paths-ignore: | |
| - "**.md" | |
| - ".github/workflows/*validate*.yml" | |
| - "system_files/shared/etc/bazaar/**" | |
| schedule: | |
| - cron: "0 1 * * TUE" # Every Tuesday at 1:00 AM UTC (same as bluefin-lts) | |
| workflow_call: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write | |
| attestations: write | |
| artifact-metadata: write | |
| jobs: | |
| build-image-stable: | |
| name: Build Stable Images | |
| uses: ./.github/workflows/reusable-build.yml | |
| secrets: inherit | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| brand_name: ["bluefin"] | |
| with: | |
| kernel_pin: 7.0.12-201.fc44.x86_64 | |
| brand_name: ${{ matrix.brand_name }} | |
| stream_name: stable | |
| generate-release: | |
| name: Generate Release | |
| needs: [build-image-stable] | |
| permissions: | |
| contents: write | |
| secrets: inherit | |
| uses: ./.github/workflows/generate-release.yml | |
| with: | |
| stream_name: '["stable", "stable-daily"]' |