From: Daniel Bevenius Date: Wed, 7 May 2025 10:02:29 +0000 (+0200) Subject: ci : add zip extension to xcframework artifact name (#3120) X-Git-Tag: upstream/1.7.5+170~25 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=9b584b0cc0b90580279a6dbe7e9ca51b463841d0;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp ci : add zip extension to xcframework artifact name (#3120) 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. --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bc66d1d9..316572bb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -964,7 +964,7 @@ jobs: uses: actions/upload-artifact@v4 with: path: whisper-${{ needs.determine-tag.outputs.tag_name }}-xcframework.zip - name: whisper-${{ needs.determine-tag.outputs.tag_name }}-xcframework + name: whisper-${{ needs.determine-tag.outputs.tag_name }}-xcframework.zip android: if: ${{ github.event_name == 'push' || github.event_name == 'pull_request' ||