diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c9a1378..b8165b65 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,16 +26,6 @@ jobs: build-apple: runs-on: macos-latest-large # if: github.event.inputs.target == 'apple' || github.event.inputs.target == 'all' - strategy: - matrix: - target: - [ - aarch64-apple-darwin, - x86_64-apple-darwin, - aarch64-apple-ios, - x86_64-apple-ios, - aarch64-apple-ios-sim, - ] steps: - name: Checkout Repository uses: actions/checkout@v4 @@ -56,13 +46,13 @@ jobs: - name: Build Apple run: | rm -f /usr/local/lib/libjpeg* - make ${{ matrix.target }} + make apple - name: Upload Apple Artifacts uses: actions/upload-artifact@v4 with: - name: dotlottie-player.${{ matrix.target }}.tar.gz - path: release/apple/dotlottie-player.${{ matrix.target }}.tar.gz + name: dotlottie-player.darwin.tar.gz + path: release/apple/dotlottie-player.darwin.tar.gz if-no-files-found: error build-android: