Skip to content

Commit ea2a565

Browse files
committed
Fix releasing desktop libraries
1 parent f261743 commit ea2a565

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,9 +203,9 @@ jobs:
203203
GH_TOKEN: ${{ github.token }}
204204
GH_REPO: ${{ github.repository }}
205205
run: |
206-
gh release upload "${{ inputs.tag }}" *.dll
207-
gh release upload "${{ inputs.tag }}" *.dylib
208-
gh release upload "${{ inputs.tag }}" *.so
206+
gh release upload "${{ needs.draft_release.outputs.tag }}" *.dll
207+
gh release upload "${{ needs.draft_release.outputs.tag }}" *.dylib
208+
gh release upload "${{ needs.draft_release.outputs.tag }}" *.so
209209
210210
publish_wasm:
211211
name: Publish WASM builds

0 commit comments

Comments
 (0)