Skip to content

Commit 64b3555

Browse files
committed
Include non-combined binaries in releases
This allows users who want smaller binaries to have them.
1 parent 4986ba9 commit 64b3555

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/coq-macos.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,12 @@ jobs:
180180
etc/ci/test-run-fiat-crypto.sh dist/fiat_crypto
181181
182182
publish-standalone:
183+
strategy:
184+
fail-fast: false
185+
matrix:
186+
arch: ['', '-x86_64', '-arm64']
183187
runs-on: ubuntu-latest
184-
needs: combine-standalone
188+
needs: [build, combine-standalone]
185189
permissions:
186190
contents: write # IMPORTANT: mandatory for making GitHub Releases
187191
steps:
@@ -192,7 +196,7 @@ jobs:
192196
- name: Download standalone MacOS
193197
uses: actions/download-artifact@v3
194198
with:
195-
name: standalone-macos
199+
name: standalone-macos${{ matrix.arch }}
196200
path: dist/
197201
- name: List files
198202
run: find dist
@@ -204,7 +208,7 @@ jobs:
204208
echo "$fname"
205209
mv dist/fiat_crypto "dist/$fname"
206210
find dist
207-
- name: Upload artifacts to GitHub Release
211+
- name: Upload macOS-${{ matrix.arch }} artifacts to GitHub Release
208212
env:
209213
GITHUB_TOKEN: ${{ github.token }}
210214
# Upload to GitHub Release using the `gh` CLI.

0 commit comments

Comments
 (0)