From e3beaede6c84ffc5257cf21bd2eee8b1e1765e42 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 5 Jun 2024 13:58:58 +0200 Subject: [PATCH] feat: Attach binary to release --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f34a2f3..620829e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -85,8 +85,8 @@ jobs: uses: shrink/actions-docker-extract@v3 with: image: ${{ secrets.DOCKERHUB_REPO }}:latest - path: /qemu-host.bin - destination: /tmp/qemu-host.bin + path: "qemu-host.bin" + destination: "/tmp/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: "/tmp/qemu-host.bin" release-tag: "v${{ steps.meta.outputs.version }}" repo-token: ${{ secrets.REPO_ACCESS_TOKEN }} -