-
-
Notifications
You must be signed in to change notification settings - Fork 2
455 lines (397 loc) · 15.4 KB
/
Copy pathrelease.yml
File metadata and controls
455 lines (397 loc) · 15.4 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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
name: Release
on:
workflow_dispatch:
inputs:
version:
description: "Version (SemVer)"
required: true
default: 0.0.0
deployment-aur-gui:
description: "Deployment (AUR, GUI)"
type: boolean
required: true
default: true
deployment-aur-cli:
description: "Deployment (AUR, CLI)"
type: boolean
required: true
default: true
deploy-latest-version:
description: "Deploy to Latest-Version-Repo"
type: boolean
required: true
default: true
deploy-major-version:
description: "Deploy to Major-Version-Repo"
type: boolean
required: true
default: true
is-preprelease:
description: "Is a Pre-Release"
type: boolean
required: true
default: false
is-latest:
description: "Is the latest release"
type: boolean
required: true
default: true
env:
CARGO_TERM_COLOR: always
jobs:
update-version:
name: Update version
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
token: ${{ secrets.BOT_TOKEN }}
- name: Install cargo-edit
run: cargo install cargo-edit
- name: Update package version
run: cargo set-version ${{ github.event.inputs.version }}
- name: Upload working directory with current version-number
uses: actions/upload-artifact@v7
with:
name: versioned-build
include-hidden-files: true
path: .
retention-days: 1
build:
name: Build
runs-on: ubuntu-latest
needs: [update-version]
steps:
- name: Download working directory with current version-number
uses: actions/download-artifact@v8
with:
name: versioned-build
path: .
- name: Build binary
run: cargo build --release --all-features
- name: Upload build artifacts
uses: actions/upload-artifact@v7
with:
name: build-artifact
include-hidden-files: true
path: .
retention-days: 1
update-metadata:
name: Update metadata
runs-on: ubuntu-latest
needs: [update-version]
steps:
- name: Download build artifacts
uses: actions/download-artifact@v8
with:
name: versioned-build
- name: Generate tarball from current repo
run: |
VERSION=${{ github.event.inputs.version }}
git config --global user.name 'OpenFoxes Maintenance Bot'
git config --global user.email 'openfoxes@bono-fox.de'
git init
git add .
git commit -m "🔖 Set version number to ${{ github.event.inputs.version }}"
git archive --format=tar.gz -o tiny4linux-${VERSION}.tar.gz HEAD
git archive --format=zip -o tiny4linux-${VERSION}.zip HEAD
- name: Extract major version
id: vars
run: |
VERSION="${{ github.event.inputs.version }}"
echo "major=${VERSION%%.*}" >> $GITHUB_OUTPUT
- name: Update PKGBUILD & SRCINFO for the GUI (Latest-Repo) with new version and SHA
if: ${{ github.event.inputs.deployment-aur-gui == 'true' && github.event.inputs.deploy-latest-version == 'true' }}
run: |
VERSION=${{ github.event.inputs.version }}
sha=$(sha256sum tiny4linux-${VERSION}.tar.gz | cut -d' ' -f1)
cd deployment/gui/aur
sed -i "s/^pkgver=.*/pkgver=${VERSION}/" PKGBUILD
sed -i "s/^pkgrel=.*/pkgrel=1/" PKGBUILD
sed -i "s/^sha256sums=.*/sha256sums=('${sha}')/" PKGBUILD
# Write-Permissions for Container-User
chmod -R 777 .
docker run --rm -v $PWD:/pkg archlinux:latest bash -c "
pacman -Sy --noconfirm --needed base-devel shadow &&
useradd -m builder || true &&
chown -R builder:builder /pkg &&
cd /pkg &&
su - builder -c 'cd /pkg && makepkg --printsrcinfo > .SRCINFO'
"
- name: Update PKGBUILD & SRCINFO for the GUI (Major-Repo) with new version and SHA
if: ${{ github.event.inputs.deployment-aur-gui == 'true' && github.event.inputs.deploy-major-version == 'true' }}
run: |
VERSION=${{ github.event.inputs.version }}
MAJOR=${{ steps.vars.outputs.major }}
sha=$(sha256sum tiny4linux-${VERSION}.tar.gz | cut -d' ' -f1)
cd deployment/gui/aur-major
sed -i "s/^pkgname=.*/pkgname=tiny4linux-gui-v${MAJOR}/" PKGBUILD
sed -i "s/^pkgver=.*/pkgver=${VERSION}/" PKGBUILD
sed -i "s/^pkgrel=.*/pkgrel=1/" PKGBUILD
sed -i "s/^sha256sums=.*/sha256sums=('${sha}')/" PKGBUILD
# Write-Permissions for Container-User
chmod -R 777 .
docker run --rm -v $PWD:/pkg archlinux:latest bash -c "
pacman -Sy --noconfirm --needed base-devel shadow &&
useradd -m builder || true &&
chown -R builder:builder /pkg &&
cd /pkg &&
su - builder -c 'cd /pkg && makepkg --printsrcinfo > .SRCINFO'
"
- name: Update PKGBUILD & SRCINFO for the CLI (Latest-Repo) with new version and SHA
if: ${{ github.event.inputs.deployment-aur-cli == 'true' && github.event.inputs.deploy-latest-version == 'true' }}
run: |
VERSION=${{ github.event.inputs.version }}
sha=$(sha256sum tiny4linux-${VERSION}.tar.gz | cut -d' ' -f1)
cd deployment/cli/aur
sed -i "s/^pkgver=.*/pkgver=${VERSION}/" PKGBUILD
sed -i "s/^pkgrel=.*/pkgrel=1/" PKGBUILD
sed -i "s/^sha256sums=.*/sha256sums=('${sha}')/" PKGBUILD
# Write-Permissions for Container-User
chmod -R 777 .
docker run --rm -v $PWD:/pkg archlinux:latest bash -c "
pacman -Sy --noconfirm --needed base-devel shadow &&
useradd -m builder || true &&
chown -R builder:builder /pkg &&
cd /pkg &&
su - builder -c 'cd /pkg && makepkg --printsrcinfo > .SRCINFO'
"
- name: Update PKGBUILD & SRCINFO for the CLI (Major-Repo) with new version and SHA
if: ${{ github.event.inputs.deployment-aur-cli == 'true' && github.event.inputs.deploy-major-version == 'true' }}
run: |
VERSION=${{ github.event.inputs.version }}
MAJOR=${{ steps.vars.outputs.major }}
sha=$(sha256sum tiny4linux-${VERSION}.tar.gz | cut -d' ' -f1)
cd deployment/cli/aur-major
sed -i "s/^pkgname=.*/pkgname=tiny4linux-cli-v${MAJOR}/" PKGBUILD
sed -i "s/^pkgver=.*/pkgver=${VERSION}/" PKGBUILD
sed -i "s/^pkgrel=.*/pkgrel=1/" PKGBUILD
sed -i "s/^sha256sums=.*/sha256sums=('${sha}')/" PKGBUILD
# Write-Permissions for Container-User
chmod -R 777 .
docker run --rm -v $PWD:/pkg archlinux:latest bash -c "
pacman -Sy --noconfirm --needed base-devel shadow &&
useradd -m builder || true &&
chown -R builder:builder /pkg &&
cd /pkg &&
su - builder -c 'cd /pkg && makepkg --printsrcinfo > .SRCINFO'
"
- name: Upload tarballs and metadata
uses: actions/upload-artifact@v7
with:
name: tarballs
include-hidden-files: true
path: |
tiny4linux-${{ github.event.inputs.version }}.tar.gz
tiny4linux-${{ github.event.inputs.version }}.zip
deployment/gui/aur/PKGBUILD
deployment/gui/aur/.SRCINFO
deployment/gui/aur/LICENSE
deployment/cli/aur/PKGBUILD
deployment/cli/aur/.SRCINFO
deployment/cli/aur/LICENSE
deployment/gui/aur-major/PKGBUILD
deployment/gui/aur-major/.SRCINFO
deployment/gui/aur-major/LICENSE
deployment/cli/aur-major/PKGBUILD
deployment/cli/aur-major/.SRCINFO
deployment/cli/aur-major/LICENSE
retention-days: 1
add-version-commit:
name: Add version commit
runs-on: ubuntu-latest
needs: [update-version, update-metadata]
steps:
- name: Download working directory with current version-number
uses: actions/download-artifact@v8
with:
name: versioned-build
path: .
- name: Download updated metadata
uses: actions/download-artifact@v8
with:
name: tarballs
path: .
- name: Add a commit
run: |
git config --global user.name 'OpenFoxes Maintenance Bot'
git config --global user.email 'openfoxes@bono-fox.de'
git init
git add .
git commit -m "🔖 Release Tiny4Linux ${{ github.event.inputs.version }}"
git tag v${{ github.event.inputs.version }}
git push -u origin HEAD:main --tags
create-github-release:
name: "Create GitHub release"
runs-on: ubuntu-latest
needs: [build, update-metadata, add-version-commit]
steps:
- name: Download build artifacts
uses: actions/download-artifact@v8
with:
name: build-artifact
path: .
- name: Download metadata
uses: actions/download-artifact@v8
with:
name: tarballs
path: .
- uses: softprops/action-gh-release@v2
with:
token: ${{ secrets.BOT_TOKEN }}
name: Version ${{ github.event.inputs.version }}
tag_name: v${{ github.event.inputs.version }}
body_path: ${{ github.workspace }}/changelogs/${{ github.event.inputs.version }}.md
prerelease: ${{ github.event.inputs.is-preprelease }}
make_latest: ${{ github.event.inputs.is-latest && !github.event.inputs.is-preprelease }}
files: |
target/release/tiny4linux-gui
target/release/tiny4linux-cli
tiny4linux-${{ github.event.inputs.version }}.tar.gz
tiny4linux-${{ github.event.inputs.version }}.zip
deploy-aur-gui:
name: "Deploy GUI to AUR"
runs-on: ubuntu-latest
if: ${{ github.event.inputs.deployment-aur-gui == 'true' && github.event.inputs.deploy-latest-version == 'true' }}
needs: [create-github-release]
steps:
- name: Setup SSH for AUR
run: |
mkdir -p ~/.ssh
echo "${{ secrets.AUR_SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan aur.archlinux.org >> ~/.ssh/known_hosts
- name: Clone AUR repository
run: |
git clone ssh://aur@aur.archlinux.org/tiny4linux-gui.git aur-repo
- name: Download packed tarballs and metadata
uses: actions/download-artifact@v8
with:
name: tarballs
path: aur-repo
- name: Commit & Push to the AUR
working-directory: aur-repo
run: |
cp -a deployment/gui/aur/. .
git config user.name "OpenFoxes Maintenance Bot"
git config user.email "openfoxes@bono-fox.de"
git add PKGBUILD .SRCINFO LICENSE
git commit -m "Update to Version ${{ github.event.inputs.version }}"
git push
deploy-aur-gui-major:
name: "Deploy GUI to AUR (Major-Version Repo)"
runs-on: ubuntu-latest
if: ${{ github.event.inputs.deployment-aur-gui == 'true' && github.event.inputs.deploy-major-version == 'true' }}
needs: [create-github-release]
steps:
- name: Extract major version
id: vars
run: |
VERSION="${{ github.event.inputs.version }}"
echo "major=${VERSION%%.*}" >> $GITHUB_OUTPUT
- name: Setup SSH for AUR
run: |
mkdir -p ~/.ssh
echo "${{ secrets.AUR_SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan aur.archlinux.org >> ~/.ssh/known_hosts
- name: Clone AUR repository
run: |
git clone ssh://aur@aur.archlinux.org/tiny4linux-gui-v${{ steps.vars.outputs.major }}.git aur-repo
- name: Download packed tarballs and metadata
uses: actions/download-artifact@v8
with:
name: tarballs
path: aur-repo
- name: Commit & Push to the AUR
working-directory: aur-repo
run: |
cp -a deployment/gui/aur-major/. .
git config user.name "OpenFoxes Maintenance Bot"
git config user.email "openfoxes@bono-fox.de"
git add PKGBUILD .SRCINFO LICENSE
git commit -m "Update V${{ steps.vars.outputs.major }}-Repo to Version ${{ github.event.inputs.version }}"
git push
deploy-aur-cli:
name: "Deploy CLI to AUR"
runs-on: ubuntu-latest
if: ${{ github.event.inputs.deployment-aur-cli == 'true' && github.event.inputs.deploy-latest-version == 'true' }}
needs: [create-github-release]
steps:
- name: Setup SSH for AUR
run: |
mkdir -p ~/.ssh
echo "${{ secrets.AUR_SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan aur.archlinux.org >> ~/.ssh/known_hosts
- name: Clone AUR repository
run: |
git clone ssh://aur@aur.archlinux.org/tiny4linux-cli.git aur-repo
- name: Download packed tarballs and metadata
uses: actions/download-artifact@v8
with:
name: tarballs
path: aur-repo
- name: Commit & Push to the AUR
working-directory: aur-repo
run: |
cp -a deployment/cli/aur/. .
git config user.name "OpenFoxes Maintenance Bot"
git config user.email "openfoxes@bono-fox.de"
git add PKGBUILD .SRCINFO LICENSE
git commit -m "Update to Version ${{ github.event.inputs.version }}"
git push
deploy-aur-cli-major:
name: "Deploy CLI to AUR (Major-Version Repo)"
runs-on: ubuntu-latest
if: ${{ github.event.inputs.deployment-aur-cli == 'true' && github.event.inputs.deploy-major-version == 'true' }}
needs: [create-github-release]
steps:
- name: Extract major version
id: vars
run: |
VERSION="${{ github.event.inputs.version }}"
echo "major=${VERSION%%.*}" >> $GITHUB_OUTPUT
- name: Setup SSH for AUR
run: |
mkdir -p ~/.ssh
echo "${{ secrets.AUR_SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan aur.archlinux.org >> ~/.ssh/known_hosts
- name: Clone AUR repository
run: |
git clone ssh://aur@aur.archlinux.org/tiny4linux-cli-v${{ steps.vars.outputs.major }}.git aur-repo
- name: Download packed tarballs and metadata
uses: actions/download-artifact@v8
with:
name: tarballs
path: aur-repo
- name: Commit & Push to the AUR
working-directory: aur-repo
run: |
cp -a deployment/cli/aur-major/. .
git config user.name "OpenFoxes Maintenance Bot"
git config user.email "openfoxes@bono-fox.de"
git add PKGBUILD .SRCINFO LICENSE
git commit -m "Update V${{ steps.vars.outputs.major }}-Repo to Version ${{ github.event.inputs.version }}"
git push
cleanup:
name: Cleanup
runs-on: ubuntu-latest
needs:
[
deploy-aur-gui,
deploy-aur-cli,
deploy-aur-gui-major,
deploy-aur-cli-major,
]
steps:
- name: Delete artifacts
uses: geekyeggo/delete-artifact@v6
with:
name: |
versioned-build
build-artifact
tarballs