-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (49 loc) · 1.5 KB
/
build.yml
File metadata and controls
56 lines (49 loc) · 1.5 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: bluebuild
on:
schedule:
- cron:
"15 21 * * *"
# push:
# paths-ignore: # don't rebuild if only documentation has changed
# - "**.md"
# - ".github/workflows/**"
# pull_request:
workflow_dispatch:
concurrency:
# only run one build at a time
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
bluebuild:
name: Build Custom Image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
strategy:
fail-fast: false # stop GH from cancelling all matrix builds if one fails
matrix:
recipe:
# Base Variants
- variants/shadowos-linux.yml
- variants/shadowos-linux-nvidia.yml
# Steam Variants
- steam/shadowos-linux-steam.yml
- steam/shadowos-linux-nvidia-steam.yml
steps:
- name: Maximize build space
uses: jlumbroso/free-disk-space@main
with:
tool-cache: true
# the build is fully handled by the reusable github action
- name: Build Custom Image
uses: blue-build/github-action@main
with:
recipe: ${{ matrix.recipe }}
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
registry_token: ${{ github.token }}
pr_event_number: ${{ github.event.number }}
build_chunked_oci: true
# enabled by default, disable if your image is small and you want faster builds
maximize_build_space: true