Skip to content

Commit

Permalink
Merge pull request #12 from dfinity/or-fix-linux-release
Browse files Browse the repository at this point in the history
separate kernel releases for guest and host
  • Loading branch information
rikonor authored Aug 8, 2024
2 parents 36c2c8a + 2b2d691 commit 559e50c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.RELEASE_ACCESS_TOKEN }}
tag_name: kernel-${{ env.SHORT_SHA }}
tag_name: kernel-${{ matrix.target }}-${{ env.SHORT_SHA }}
files: |
${{ github.workspace }}/out/*
body: |
Expand Down
2 changes: 1 addition & 1 deletion build/kernel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ find "${BUILD_DIR}/.." -name "linux-image*.deb" -not -name "*dbg*" -exec dpkg -i

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

0 comments on commit 559e50c

Please sign in to comment.