-
Notifications
You must be signed in to change notification settings - Fork 0
232 lines (229 loc) · 6.91 KB
/
release.yaml
File metadata and controls
232 lines (229 loc) · 6.91 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
name: Release
# Only one workflow can run at a time
# If there is newer workflow in progress, cancel older ones
concurrency:
group: release
cancel-in-progress: true
# Put 'on' in quotes to avoid YAML parsing error
"on":
# Enable manual triggering
workflow_dispatch: {}
# Run on commits to main branch
push:
branches:
- main
# Run only on changes to relevant files
paths:
- .github/workflows/release.yaml
- src/**
- flake.lock
- "*.nix"
- Taskfile.dist.yaml
jobs:
check:
name: Check charts
# Pin version of Ubuntu to avoid breaking changes
runs-on: ubuntu-24.04
# Use reasonable timeout to avoid stuck workflows
timeout-minutes: 10
env:
NIX_CACHE_DIR: /home/runner/.nixcache/
permissions:
# Needed to checkout code
contents: read
outputs:
charts: ${{ steps.check.outputs.charts }}
steps:
- name: Checkout code
uses: actions/checkout@v5.0.0
- name: Setup Nix cache
uses: actions/cache@v4.3.0
id: cache-nix
with:
path: ${{ env.NIX_CACHE_DIR }}
key: release-nix
- name: Install Nix
uses: cachix/install-nix-action@v31.8.4
with:
github_access_token: ${{ github.token }}
install_url: https://releases.nixos.org/nix/nix-2.28.5/install
# See: https://github.com/cachix/install-nix-action/issues/56
- name: Import Nix store cache
if: steps.cache-nix.outputs.cache-hit == 'true'
run: >-
nix-store
--import
< ${{ env.NIX_CACHE_DIR }}/archive.nar
- name: Log in to the Container registry
uses: docker/login-action@v3.6.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Check charts
id: check
run: >-
nix develop ./#release --command -- bash -c '
tmpfile="$(mktemp)";
find src/ -mindepth 1 -maxdepth 1 -type d | while read chart; do
upstream="oci://ghcr.io/${{ github.repository }}/${chart#src/}";
local="$(helm show chart "${chart}" | yq ".version")";
remote="$(helm show chart "${upstream}" | yq ".version")";
test "${local}" = "${remote}" || echo "${chart}" >> "${tmpfile}";
done;
charts="$(tr "\n" " " < "${tmpfile}")";
echo "charts=${charts}" >> "${GITHUB_OUTPUT}";
rm "${tmpfile}";
'
# See: https://github.com/cachix/install-nix-action/issues/56
- name: Export Nix store cache
if: "!cancelled()"
run: >-
mkdir
--parents
${{ env.NIX_CACHE_DIR }}
&&
nix-store
--export $(find /nix/store/ -maxdepth 1 -name '*-*')
> ${{ env.NIX_CACHE_DIR }}/archive.nar
build:
name: Build charts
# Run only if check job succeeded
needs: check
# Run only if there are charts to build
if: needs.check.outputs.charts != ''
# Pin version of Ubuntu to avoid breaking changes
runs-on: ubuntu-24.04
# Use reasonable timeout to avoid stuck workflows
timeout-minutes: 10
env:
NIX_CACHE_DIR: /home/runner/.nixcache/
permissions:
# Needed to checkout code
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v5.0.0
- name: Setup Nix cache
uses: actions/cache@v4.3.0
id: cache-nix
with:
path: ${{ env.NIX_CACHE_DIR }}
key: release-nix
- name: Install Nix
uses: cachix/install-nix-action@v31.8.4
with:
github_access_token: ${{ github.token }}
install_url: https://releases.nixos.org/nix/nix-2.28.5/install
# See: https://github.com/cachix/install-nix-action/issues/56
- name: Import Nix store cache
if: steps.cache-nix.outputs.cache-hit == 'true'
run: >-
nix-store
--import
< ${{ env.NIX_CACHE_DIR }}/archive.nar
- name: Build charts
run: >-
nix
develop
./#release
--command
--
task
build
--
${{ needs.check.outputs.charts }}
- name: Upload chart artifacts
uses: actions/upload-artifact@v5.0.0
with:
include-hidden-files: true
name: charts
path: build/*.tgz
# See: https://github.com/cachix/install-nix-action/issues/56
- name: Export Nix store cache
if: "!cancelled()"
run: >-
mkdir
--parents
${{ env.NIX_CACHE_DIR }}
&&
nix-store
--export $(find /nix/store/ -maxdepth 1 -name '*-*')
> ${{ env.NIX_CACHE_DIR }}/archive.nar
release:
name: Release charts to GitHub registry
# Run only if build job succeeded
needs: build
# Pin version of Ubuntu to avoid breaking changes
runs-on: ubuntu-24.04
# Use reasonable timeout to avoid stuck workflows
timeout-minutes: 10
env:
NIX_CACHE_DIR: /home/runner/.nixcache/
permissions:
# Needed to checkout code
contents: read
# Needed to push to registry
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v5.0.0
- name: Setup Nix cache
uses: actions/cache@v4.3.0
id: cache-nix
with:
path: ${{ env.NIX_CACHE_DIR }}
key: release-nix
- name: Install Nix
uses: cachix/install-nix-action@v31.8.4
with:
github_access_token: ${{ github.token }}
install_url: https://releases.nixos.org/nix/nix-2.28.5/install
# See: https://github.com/cachix/install-nix-action/issues/56
- name: Import Nix store cache
if: steps.cache-nix.outputs.cache-hit == 'true'
run: >-
nix-store
--import
< ${{ env.NIX_CACHE_DIR }}/archive.nar
- name: Download chart artifacts
uses: actions/download-artifact@v6.0.0
with:
name: charts
path: build/
- name: Log in to the Container registry
uses: docker/login-action@v3.6.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push charts to the registry
run: >-
nix
develop
./#release
--command
--
find
build/
-type
f
-name
'*.tgz'
-exec
helm
push
{}
'oci://ghcr.io/${{ github.repository }}'
\;
# See: https://github.com/cachix/install-nix-action/issues/56
- name: Export Nix store cache
if: "!cancelled()"
run: >-
mkdir
--parents
${{ env.NIX_CACHE_DIR }}
&&
nix-store
--export $(find /nix/store/ -maxdepth 1 -name '*-*')
> ${{ env.NIX_CACHE_DIR }}/archive.nar