File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -180,8 +180,12 @@ jobs:
180
180
etc/ci/test-run-fiat-crypto.sh dist/fiat_crypto
181
181
182
182
publish-standalone :
183
+ strategy :
184
+ fail-fast : false
185
+ matrix :
186
+ arch : ['', '-x86_64', '-arm64']
183
187
runs-on : ubuntu-latest
184
- needs : combine-standalone
188
+ needs : [build, combine-standalone]
185
189
permissions :
186
190
contents : write # IMPORTANT: mandatory for making GitHub Releases
187
191
steps :
@@ -192,7 +196,7 @@ jobs:
192
196
- name : Download standalone MacOS
193
197
uses : actions/download-artifact@v3
194
198
with :
195
- name : standalone-macos
199
+ name : standalone-macos${{ matrix.arch }}
196
200
path : dist/
197
201
- name : List files
198
202
run : find dist
@@ -204,7 +208,7 @@ jobs:
204
208
echo "$fname"
205
209
mv dist/fiat_crypto "dist/$fname"
206
210
find dist
207
- - name : Upload artifacts to GitHub Release
211
+ - name : Upload macOS-${{ matrix.arch }} artifacts to GitHub Release
208
212
env :
209
213
GITHUB_TOKEN : ${{ github.token }}
210
214
# Upload to GitHub Release using the `gh` CLI.
You can’t perform that action at this time.
0 commit comments