Skip to content

Commit fc320f0

Browse files
committed
Add artifacts uploading
1 parent be6021e commit fc320f0

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/build.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,34 @@ jobs:
1818
submodules: recursive
1919
- name: Build
2020
run: scripts/build_reproducible.sh
21+
- uses: actions/upload-artifact@v4
22+
with:
23+
name: rootfs-dev.iso
24+
path: artifacts/rootfs-dev.iso
25+
- uses: actions/upload-artifact@v4
26+
with:
27+
name: rootfs-prod.iso
28+
path: artifacts/rootfs-prod.iso
29+
- uses: actions/upload-artifact@v4
30+
with:
31+
name: rootfs-gpu-dev.iso
32+
path: artifacts/rootfs-gpu-dev.iso
33+
- uses: actions/upload-artifact@v4
34+
with:
35+
name: rootfs-gpu-prod.iso
36+
path: artifacts/rootfs-gpu-prod.iso
37+
- uses: actions/upload-artifact@v4
38+
with:
39+
name: ovmf.fd
40+
path: artifacts/ovmf.fd
41+
- uses: actions/upload-artifact@v4
42+
with:
43+
name: bzImage
44+
path: artifacts/bzImage
45+
- uses: actions/upload-artifact@v4
46+
with:
47+
name: initramfs.cpio.gz
48+
path: artifacts/initramfs.cpio.gz
2149
- name: Release
2250
uses: softprops/action-gh-release@v1
2351
with:

0 commit comments

Comments
 (0)