Skip to content

refactor: Reorganize Build Process #39

refactor: Reorganize Build Process

refactor: Reorganize Build Process #39

Workflow file for this run

name: GTS Images
on:
pull_request:
branches:
- main
- testing
paths-ignore:
- "**.md"
schedule:
- cron: "41 5 * * 0" # 5:41 UTC Weekly on Sundays
workflow_dispatch:
workflow_call:
jobs:
build-image-gts:
name: Build GTS Images
uses: ./.github/workflows/reusable-build.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
brand_name: [bluefin]
with:
brand_name: ${{ matrix.brand_name }}
fedora_version: gts
generate_release:
name: Generate Release
needs: [build-image-gts]
if: github.event_name == 'scheduled' || github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call'
secrets: inherit
uses: ./.github/workflows/generate-release.yml
with:
fedora_version: gts
build-iso-gts:
name: Build Stable ISOs
needs: [build-image-gts]
if: github.event_name == 'scheduled'
secrets: inherit
uses: ./.github/workflows/build-iso-stable.yml