File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -116,17 +116,20 @@ jobs:
116
116
if : matrix.target.channel == 'linux'
117
117
uses : montudor/action-zip@v1
118
118
with :
119
- args : zip -r ${{ env.binary }}.${{ env.extension }} linux
119
+ files : linux
120
+ dest : ${{ env.binary }}.${{ env.extension }}
120
121
- name : windows packaging
121
122
if : matrix.target.channel == 'windows'
122
123
uses : montudor/action-zip@v1
123
124
with :
124
- args : zip -r ${{ env.binary }}.${{ env.extension }} windows
125
+ files : windows
126
+ dest : ${{ env.binary }}.${{ env.extension }}
125
127
- name : wasm packaging
126
128
if : matrix.target.channel == 'wasm'
127
129
uses : montudor/action-zip@v1
128
130
with :
129
- args : zip -r ${{ env.binary }}.${{ env.extension }} wasm
131
+ files : wasm
132
+ dest : ${{ env.binary }}.${{ env.extension }}
130
133
131
134
- name : Upload binaries to release
132
135
uses : svenstaro/upload-release-action@v2
You can’t perform that action at this time.
0 commit comments