generated from ublue-os/image-template
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: refactor workflow to support multiple images
- Loading branch information
Showing
5 changed files
with
155 additions
and
26 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Build Bluefin LTS DX | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
schedule: | ||
- cron: "0 1 * * TUE" # Every Tuesday at 1am UTC | ||
merge_group: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- "**/README.md" | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/reusable-build-image.yml | ||
with: | ||
image-name: bluefin-dx | ||
image-desc: "Bluefin LTS, built on CentOS Stream with bootc" | ||
flavor: dx |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Build Bluefin LTS HWE DX | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
schedule: | ||
- cron: "0 1 * * TUE" # Every Tuesday at 1am UTC | ||
merge_group: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- "**/README.md" | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/reusable-build-image.yml | ||
with: | ||
image-name: bluefin-hwe-dx | ||
image-desc: "Bluefin LTS, built on CentOS Stream with bootc" | ||
flavor: hwe-dx |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Build Bluefin LTS HWE | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
schedule: | ||
- cron: "0 1 * * TUE" # Every Tuesday at 1am UTC | ||
merge_group: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- "**/README.md" | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/reusable-build-image.yml | ||
with: | ||
image-name: bluefin-hwe | ||
image-desc: "Bluefin LTS, built on CentOS Stream with bootc" | ||
flavor: hwe |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Build Bluefin LTS | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
schedule: | ||
- cron: "0 1 * * TUE" # Every Tuesday at 1am UTC | ||
merge_group: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- "**/README.md" | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
uses: ./.github/workflows/reusable-build-image.yml | ||
with: | ||
image-name: bluefin | ||
image-desc: "Bluefin LTS, built on CentOS Stream with bootc" |
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