forked from ublue-os/bluefin
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 949 Bytes
/
build-image-gts.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: GTS Images
on:
pull_request:
branches:
- main
- testing
paths-ignore:
- "**.md"
schedule:
- cron: "50 5 * * 0" # 5:50 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:
# kernel_pin: 6.11.3-200.fc40.x86_64 ## This is where kernels get pinned.
brand_name: ${{ matrix.brand_name }}
stream_name: gts
generate_release:
name: Generate Release
needs: [build-image-gts]
secrets: inherit
uses: ./.github/workflows/generate-release.yml
with:
stream_name: '["gts"]'
build-iso-gts:
name: Build GTS ISOs
needs: [build-image-gts]
if: github.event_name == 'schedule'
secrets: inherit
uses: ./.github/workflows/build-iso-gts.yml