We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93b8de6 commit a02652eCopy full SHA for a02652e
.github/workflows/publish.yml
@@ -27,12 +27,13 @@ jobs:
27
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
28
with:
29
path: artifacts
30
+ merge-multiple: true
31
32
- name: Upload assets to release
33
env:
34
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35
run: |
36
# Upload all files from the build job
37
for file in artifacts/*; do
- 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 }}
39
done
0 commit comments