From 9589b1d197e2d98a888049b78de33af03cc411d1 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 5 Jun 2024 14:09:56 +0200 Subject: [PATCH] feat: Attach binary to release --- .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 620829e..9605a41 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: "/tmp/qemu-host.bin" + destination: "qemu-host.bin" - 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: "/tmp/qemu-host.bin" + files: 'qemu-host.bin' release-tag: "v${{ steps.meta.outputs.version }}" repo-token: ${{ secrets.REPO_ACCESS_TOKEN }} -