diff --git a/.github/workflows/periodic-builds-apple.yml b/.github/workflows/periodic-builds-apple.yml index e92592a..a177162 100644 --- a/.github/workflows/periodic-builds-apple.yml +++ b/.github/workflows/periodic-builds-apple.yml @@ -24,13 +24,15 @@ jobs: run: echo "export DEVELOPER_DIR=/Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer" > ~/.xcode.for.ffmpeg.kit.sh - name: run the build script run: PATH="/usr/local/opt/bison/bin:$PATH" XML_CATALOG_FILES="/usr/local/etc/xml/catalog" ./ios.sh -x --full --enable-gpl --disable-lib-srt --disable-lib-gnutls - - run: zip -r ffmpegkit.xcframework.zip ./prebuilt/bundle-apple-xcframework-ios/ffmpegkit.xcframework + - name: package zip + working-directory: ./prebuilt/bundle-apple-xcframework-ios/ + run: zip -r ffmpegkit.xcframework.zip ffmpegkit.xcframework - name: Upload Release Asset (.integrity) id: upload-release-asset-integrity uses: ncipollo/release-action@v1 with: allowUpdates: true - artifacts: "ffmpegkit.xcframework.zip" + artifacts: "prebuilt/bundle-apple-xcframework-ios/ffmpegkit.xcframework.zip" omitBodyDuringUpdate: true omitNameDuringUpdate: true draft: true