chore(deps): update actions/upload-artifact digest to 65c4c4a #160
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: Stable Images | |
on: | |
merge_group: # Make Stable-Daily run on merge groups | |
pull_request: | |
branches: | |
- main | |
- testing | |
paths-ignore: | |
- "**.md" | |
schedule: | |
- cron: "45 5 * * 1,2,3,4,5,6" # 5:41 UTC everyday | |
- cron: "45 5 * * 0" # 5:41 UTC sunday | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
build-image-stable: | |
name: Build Stable Images | |
uses: ./.github/workflows/reusable-build.yml | |
secrets: inherit | |
strategy: | |
fail-fast: false | |
matrix: | |
brand_name: ["aurora"] | |
with: | |
# kernel_pin: 6.11.3-300.fc41.x86_64 ## This is where kernels get pinned. | |
brand_name: ${{ matrix.brand_name }} | |
stream_name: stable | |
generate-release: | |
name: Generate Release | |
needs: [build-image-stable] | |
secrets: inherit | |
uses: ./.github/workflows/generate-release.yml | |
with: | |
stream_name: '["stable", "stable-daily"]' | |
build-iso-stable: | |
name: Build Stable ISOs | |
needs: [build-image-stable] | |
if: github.event.schedule == '45 5 * * 0' | |
secrets: inherit | |
uses: ./.github/workflows/build-iso-stable.yml |