File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Build
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - " v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10
7
+ - " v[0-9]+.[0-9]+.[0-9]+-alpha.[0-9]+" # Push events to matching alpha releases
8
+ - " v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+" # Push events to matching beta releases
9
+ - " v[0-9]+.[0-9]+.[0-9]+-patch.[0-9]+" # Push events to matching beta releases
10
+ - " v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+" # Push events to matching rc releases
11
+
12
+ jobs :
13
+ build :
14
+ runs-on : secret-vm-build-runner
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+ with :
18
+ submodules : recursive
19
+ - name : Build
20
+ run : scripts/build_reproducible.sh
21
+ - name : Release
22
+ uses : softprops/action-gh-release@v1
23
+ with :
24
+ prerelease : true
25
+ files : |
26
+ artifacts/rootfs.iso
27
+ artifacts/rootfs-gpu.iso
28
+ artifacts/ovmf.fd
29
+ artifacts/bzImage
30
+ artifacts/initramfs.cpio.gz
You can’t perform that action at this time.
0 commit comments