ci: add input for pushing image #1
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: Beta Images | ||
|
Check failure on line 1 in .github/workflows/build-image-beta.yml
|
||
| on: | ||
| merge_group: # Make Beta Images run on merge groups | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| - testing | ||
| paths-ignore: | ||
| - ".github/workflows/*iso*.yml" | ||
| - "**.md" | ||
| - "flatpaks/**" | ||
| - "iso_files/**" | ||
| schedule: | ||
| - cron: "50 5 * * 0" # 5:50 UTC sunday | ||
| workflow_call: | ||
| workflow_dispatch: | ||
| jobs: | ||
| build-image-beta: | ||
| name: Build Beta Images | ||
| uses: ./.github/workflows/reusable-build.yml | ||
| secrets: inherit | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| brand_name: ["bluefin"] | ||
| with: | ||
| brand_name: ${{ matrix.brand_name }} | ||
| stream_name: beta | ||
| push: ${{ github.event_name != "pull_request" }} | ||
| generate-release: | ||
| name: Generate Release | ||
| needs: [build-image-beta] | ||
| secrets: inherit | ||
| uses: ./.github/workflows/generate-release.yml | ||
| with: | ||
| stream_name: '["beta"]' | ||