From 3750c00bd751d56fc3a5eeec1b7d9839f09d1a9b Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 5 Jun 2024 14:15:33 +0200 Subject: [PATCH] feat: Attach binary to release (#58) --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9605a41..ec8b1cc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -86,7 +86,7 @@ jobs: with: image: ${{ secrets.DOCKERHUB_REPO }}:latest path: "qemu-host.bin" - destination: "qemu-host.bin" + destination: "output" - name: Create a release uses: action-pack/github-release@v2 @@ -98,7 +98,7 @@ jobs: name: Update release uses: AButler/upload-release-assets@v3.0 with: - files: 'qemu-host.bin' + files: 'output/qemu-host.bin' release-tag: "v${{ steps.meta.outputs.version }}" repo-token: ${{ secrets.REPO_ACCESS_TOKEN }} -