Skip to content

Commit 1c2d576

Browse files
authored
feat: Attach binary to release (#56)
1 parent 3055ea8 commit 1c2d576

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ jobs:
8585
uses: shrink/actions-docker-extract@v3
8686
with:
8787
image: ${{ secrets.DOCKERHUB_REPO }}:latest
88-
path: /qemu-host.bin
89-
destination: /tmp/qemu-host.bin
88+
path: "qemu-host.bin"
89+
destination: "/tmp/qemu-host.bin"
9090
-
9191
name: Create a release
9292
uses: action-pack/github-release@v2
@@ -98,7 +98,7 @@ jobs:
9898
name: Update release
9999
uses: AButler/upload-release-assets@v3.0
100100
with:
101-
files: '/tmp/qemu-host.bin'
101+
files: "/tmp/qemu-host.bin"
102102
release-tag: "v${{ steps.meta.outputs.version }}"
103103
repo-token: ${{ secrets.REPO_ACCESS_TOKEN }}
104104
-

0 commit comments

Comments
 (0)