From ff3a4ba7acac81a80c55b44f6592427a241ecf0f Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Wed, 28 May 2025 23:10:01 +0200 Subject: [PATCH] Also build an .xcarchive on releases, for pthaler :) --- .github/workflows/build-apple.yml | 20 ++++++++++++++++++++ .github/workflows/make-release.yml | 1 + 2 files changed, 21 insertions(+) diff --git a/.github/workflows/build-apple.yml b/.github/workflows/build-apple.yml index 3ee33c9b..6c3b5240 100644 --- a/.github/workflows/build-apple.yml +++ b/.github/workflows/build-apple.yml @@ -26,6 +26,26 @@ jobs: name: builds-ios path: build/ios/iphoneos/Runner.app + build_ipa: + name: IPA + runs-on: macos-latest + steps: + - name: Checkout application + uses: actions/checkout@v4 + with: + ref: ${{ inputs.ref }} + + - name: Common flutter setup + uses: ./.github/actions/flutter-common + + - name: Build .xcarchive + run: flutter build ipa --release --no-codesign + + - uses: actions/upload-artifact@v4 + with: + name: builds-ipa + path: build/ios/archive/Runner.xcarchive + build_macos: name: macOS runs-on: macos-latest diff --git a/.github/workflows/make-release.yml b/.github/workflows/make-release.yml index 4736eef7..ad95a65c 100644 --- a/.github/workflows/make-release.yml +++ b/.github/workflows/make-release.yml @@ -144,6 +144,7 @@ jobs: builds-apk/app-release.apk builds-linux/wger-linux-x86.tar.gz builds-ios/Runner.app + builds-ipa/Runner.xcarchive builds-macos/wger.app builds-windows/wger.exe