forked from ublue-os/aurora
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (37 loc) · 963 Bytes
/
Copy pathbuild-image-stable.yml
File metadata and controls
40 lines (37 loc) · 963 Bytes
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
name: Stable Images
on:
merge_group: # Make Stable-Daily run on merge groups
pull_request:
branches:
- main
- testing
paths-ignore:
- "**.md"
- "iso_files/**"
- "aurora_flatpaks/**"
- "dx_flatpaks/**"
- ".github/workflows/*iso*"
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: ["aurora"]
with:
# kernel_pin: 6.13.8-200.fc41.x86_64 ## This is where kernels get pinned.
brand_name: ${{ matrix.brand_name }}
stream_name: stable
generate-release:
name: Generate Release
needs: [build-image-stable]
secrets: inherit
uses: ./.github/workflows/generate-release.yml
with:
stream_name: '["stable", "stable-daily"]'