We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1001f1 commit 129d736Copy full SHA for 129d736
.github/workflows/build.yml
@@ -21,7 +21,7 @@ jobs:
21
steps:
22
- name: Maximize build space
23
uses: ublue-os/remove-unwanted-software@v7
24
-
+
25
- name: Checkout repository
26
uses: actions/checkout@v4
27
@@ -35,7 +35,17 @@ jobs:
35
local --arch "${{ matrix.arch }}" --with baseonly \
36
--builddir build --buildrootdir buildroot
37
38
- - name: Upload Kernel
+ - name: Upload Kernel to action
39
+ uses: actions/upload-artifact@v4
40
+ with:
41
+ name: kernel
42
+ path: |
43
+ .build-*.log
44
+ ${{ matrix.arch }}/kernel-*.rpm
45
+ compression-level: 0 # already compressed
46
47
+ - name: Upload Kernel to release
48
+ if: github.event_name == 'release'
49
uses: softprops/action-gh-release@v2
50
with:
51
files: |
0 commit comments