Skip to content

Commit a02652e

Browse files
authored
Fix publish workflow (#510)
1 parent 93b8de6 commit a02652e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,13 @@ jobs:
2727
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
2828
with:
2929
path: artifacts
30+
merge-multiple: true
3031

3132
- name: Upload assets to release
3233
env:
3334
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3435
run: |
3536
# Upload all files from the build job
3637
for file in artifacts/*; do
37-
gh release upload ${{ inputs.tag_name || github.event.release.tag_name }} $file
38+
gh release upload ${{ inputs.tag_name || github.event.release.tag_name }} $file --repo ${{ github.repository }}
3839
done

0 commit comments

Comments
 (0)