danbev commited on
Commit
a8a2519
·
unverified ·
1 Parent(s): e0d130c

ci : add zip extension to xcframework artifact name (#3120)

Browse files

This commit add the .zip extension to the xcframework artifact name in
the GitHub Actions workflow.

The motivation for this that the release job will look for .zip files
and will not find the xcframework artifact without the extension, and
hence will not upload it to the release.

Files changed (1) hide show
  1. .github/workflows/build.yml +1 -1
.github/workflows/build.yml CHANGED
@@ -964,7 +964,7 @@ jobs:
964
  uses: actions/upload-artifact@v4
965
  with:
966
  path: whisper-${{ needs.determine-tag.outputs.tag_name }}-xcframework.zip
967
- name: whisper-${{ needs.determine-tag.outputs.tag_name }}-xcframework
968
 
969
  android:
970
  if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' ||
 
964
  uses: actions/upload-artifact@v4
965
  with:
966
  path: whisper-${{ needs.determine-tag.outputs.tag_name }}-xcframework.zip
967
+ name: whisper-${{ needs.determine-tag.outputs.tag_name }}-xcframework.zip
968
 
969
  android:
970
  if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' ||