Skip to content

ci: add input for pushing image #1

ci: add input for pushing image

ci: add input for pushing image #1

name: Stable Images

Check failure on line 1 in .github/workflows/build-image-stable.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-image-stable.yml

Invalid workflow file

(Line: 31, Col: 13): Unexpected symbol: '"pull_request"'. Located at position 22 within expression: github.event_name != "pull_request"
on:
merge_group: # Make Stable-Daily run on merge groups
pull_request:
branches:
- main
- testing
paths-ignore:
- ".github/workflows/*iso*"
- "**.md"
- "flatpaks/**"
- "iso_files/**"
schedule:
- cron: "50 5 * * 0" # 5:50 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: ["bluefin"]
with:
# kernel_pin: 6.14.11-300.fc42.x86_64 ## This is where kernels get pinned.
brand_name: ${{ matrix.brand_name }}
stream_name: stable
push: ${{ github.event_name != "pull_request" }}
generate-release:
name: Generate Release
needs: [build-image-stable]
secrets: inherit
uses: ./.github/workflows/generate-release.yml
with:
stream_name: '["stable", "stable-daily"]'