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 f261743 commit ea2a565Copy full SHA for ea2a565
.github/workflows/release.yml
@@ -203,9 +203,9 @@ jobs:
203
GH_TOKEN: ${{ github.token }}
204
GH_REPO: ${{ github.repository }}
205
run: |
206
- gh release upload "${{ inputs.tag }}" *.dll
207
- gh release upload "${{ inputs.tag }}" *.dylib
208
- gh release upload "${{ inputs.tag }}" *.so
+ gh release upload "${{ needs.draft_release.outputs.tag }}" *.dll
+ gh release upload "${{ needs.draft_release.outputs.tag }}" *.dylib
+ gh release upload "${{ needs.draft_release.outputs.tag }}" *.so
209
210
publish_wasm:
211
name: Publish WASM builds
0 commit comments