Skip to content

Commit

Permalink
Merge pull request #11 from dfinity/or-fix-release-body
Browse files Browse the repository at this point in the history
Fix release body
  • Loading branch information
rikonor authored Aug 8, 2024
2 parents a4634fa + a8e2ad6 commit 36c2c8a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ jobs:
body: |
| Name | Value |
| ------------- | ------------- |
| Builder | `ghcr.io/dfinity/kernel-builder:${{ env.BUILDER_REF }}` |
| Local | [${{ github.repository }}:${{ github.sha }}](https://github.com/${{ github.repository }})/tree/${{ github.sha }} |
| Upstream | [`${{ matrix.upstream }}:${{ matrix.ref }}`](https://github.com/${{ matrix.upstream }}/tree/${{ matrix.ref }}) |
| Builder | [ghcr.io/dfinity/kernel-builder:${{ env.BUILDER_REF }}](https://github.com/${{ github.repository }}/pkgs/container/kernel-builder) |
| Local | [${{ github.repository }}:${{ github.sha }}](https://github.com/${{ github.repository }}/tree/${{ github.sha }}) |
| Upstream | [${{ matrix.upstream }}:${{ matrix.ref }}](https://github.com/${{ matrix.upstream }}/tree/${{ matrix.ref }}) |
ovmf:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -183,9 +183,9 @@ jobs:
body: |
| Name | Value |
| ------------- | ------------- |
| Builder | `ghcr.io/dfinity/ovmf-builder:${{ env.BUILDER_REF }}` |
| Local | [${{ github.repository }}:${{ github.sha }}](https://github.com/${{ github.repository }})/tree/${{ github.sha }} |
| Upstream | [`${{ matrix.upstream }}:${{ matrix.ref }}`](https://github.com/${{ matrix.upstream }}/tree/${{ matrix.ref }}) |
| Builder | [ghcr.io/dfinity/ovmf-builder:${{ env.BUILDER_REF }}](https://github.com/${{ github.repository }}/pkgs/container/ovmf-builder) |
| Local | [${{ github.repository }}:${{ github.sha }}](https://github.com/${{ github.repository }}/tree/${{ github.sha }}) |
| Upstream | [${{ matrix.upstream }}:${{ matrix.ref }}](https://github.com/${{ matrix.upstream }}/tree/${{ matrix.ref }}) |
qemu:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -246,6 +246,6 @@ jobs:
body: |
| Name | Value |
| ------------- | ------------- |
| Builder | `ghcr.io/dfinity/qemu-builder:${{ env.BUILDER_REF }}` |
| Local | [${{ github.repository }}:${{ github.sha }}](https://github.com/${{ github.repository }})/tree/${{ github.sha }} |
| Upstream | [`${{ matrix.upstream }}:${{ matrix.ref }}`](https://github.com/${{ matrix.upstream }}/tree/${{ matrix.ref }}) |
| Builder | [ghcr.io/dfinity/qemu-builder:${{ env.BUILDER_REF }}](https://github.com/${{ github.repository }}/pkgs/container/qemu-builder) |
| Local | [${{ github.repository }}:${{ github.sha }}](https://github.com/${{ github.repository }}/tree/${{ github.sha }}) |
| Upstream | [${{ matrix.upstream }}:${{ matrix.ref }}](https://github.com/${{ matrix.upstream }}/tree/${{ matrix.ref }}) |
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}"
2 changes: 1 addition & 1 deletion build/ovmf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ build \
-n $(nproc)

# Output
cp "${SOURCE_DIR}/Build/AmdSev/DEBUG_GCC5/FV/OVMF.fd" "${OUT_DIR}"
cp "${SOURCE_DIR}/Build/AmdSev/DEBUG_GCC5/FV/OVMF.fd" "${OUT_DIR}"
1 change: 1 addition & 0 deletions build/qemu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ make install
checkinstall -D -y \
--pkgname=qemu \
--pkgversion=8

0 comments on commit 36c2c8a

Please sign in to comment.