Skip to content

Commit 559e50c

Browse files
authored
Merge pull request #12 from dfinity/or-fix-linux-release
separate kernel releases for guest and host
2 parents 36c2c8a + 2b2d691 commit 559e50c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/targets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
uses: softprops/action-gh-release@v1
115115
with:
116116
token: ${{ secrets.RELEASE_ACCESS_TOKEN }}
117-
tag_name: kernel-${{ env.SHORT_SHA }}
117+
tag_name: kernel-${{ matrix.target }}-${{ env.SHORT_SHA }}
118118
files: |
119119
${{ github.workspace }}/out/*
120120
body: |

build/kernel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ find "${BUILD_DIR}/.." -name "linux-image*.deb" -not -name "*dbg*" -exec dpkg -i
3131

3232
# Output
3333
find "${BUILD_DIR}/.." -name "linux-image*.deb" -not -name "*dbg*" | xargs -I {} cp {} "${OUT_DIR}"
34-
find "/boot" -name "initrd*" -or -name "vmlinuz*" -or -name "config*" | xargs -I {} cp {} "${OUT_DIR}"
34+
find "/boot" -name "initrd*" -or -name "vmlinuz*" -or -name "config*" | xargs -I {} cp {} "${OUT_DIR}"

0 commit comments

Comments
 (0)