File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -96,13 +96,17 @@ jobs:
96
96
${{ steps.vars.outputs.KERNEL_IMAGE }}-${{ steps.vars.outputs.KERNEL_TYPE }}-${{ matrix.arch }}
97
97
cp ${{ steps.vars.outputs.OUT_DIR }}/vmlinux ${{ steps.vars.outputs.OUT_DIR }}/vmlinux-${{ steps.vars.outputs.KERNEL_TYPE }}-${{ matrix.arch }}
98
98
99
- - name : Upload kernel artifact
99
+ - name : Upload kernel image artifact
100
100
uses : actions/upload-artifact@v3
101
101
with :
102
102
name : kernel-image
103
- path : |
104
- ${{ steps.vars.outputs.KERNEL_IMAGE }}-${{ steps.vars.outputs.KERNEL_TYPE }}-${{ matrix.arch }}
105
- ${{ steps.vars.outputs.OUT_DIR }}/vmlinux-${{ steps.vars.outputs.KERNEL_TYPE }}-${{ matrix.arch }}
103
+ path : ${{ steps.vars.outputs.KERNEL_IMAGE }}-${{ steps.vars.outputs.KERNEL_TYPE }}-${{ matrix.arch }}
104
+
105
+ - name : Upload vmlinux artifact
106
+ uses : actions/upload-artifact@v3
107
+ with :
108
+ name : vmlinux
109
+ path : ${{ steps.vars.outputs.OUT_DIR }}/vmlinux-${{ steps.vars.outputs.KERNEL_TYPE }}-${{ matrix.arch }}
106
110
107
111
- name : Upload rootfs artifact
108
112
uses : actions/upload-artifact@v3
@@ -135,5 +139,6 @@ jobs:
135
139
prerelease : true
136
140
tag_name : ${{ steps.vars.outputs.DATE }}-${{ needs.build.outputs.SHORT_HASH }}
137
141
files : |
142
+ vmlinux/*
138
143
kernel-image/*
139
144
rootfs/*
You can’t perform that action at this time.
0 commit comments