Skip to content

Commit 8a443d5

Browse files
Fix path for publishing (#4)
* Automate publishing of binaries * Fix paths
1 parent a2bd379 commit 8a443d5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: .github/workflows/upload-release-assets.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@ jobs:
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131
run: |
32+
cd bin
3233
tag_name="${GITHUB_REF##*/}"
33-
hub release edit $(find . -type f -name "bin/canary_*" -printf "-a %p ") -m "" "$tag_name"
34+
hub release edit $(find . -type f -name "canary_*" -printf "-a %p ") -m "" "$tag_name"

0 commit comments

Comments
 (0)