From 4cb466d5a53d0e29440ee4b351fa6da079559cc8 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Tue, 23 Sep 2025 12:39:21 +0200 Subject: [PATCH] Actually upload the runner zip file, not the folder... --- .github/workflows/build-apple.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-apple.yml b/.github/workflows/build-apple.yml index 0ca6888a..4faa7313 100644 --- a/.github/workflows/build-apple.yml +++ b/.github/workflows/build-apple.yml @@ -16,6 +16,8 @@ jobs: ref: ${{ inputs.ref }} # This seems to be related to https://github.com/actions/runner-images/issues/12758 + # Select appropriate Xcode version from + # https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode - name: Xcode setup run: | sudo xcode-select --switch /Applications/Xcode_16.4.app @@ -32,7 +34,7 @@ jobs: - uses: actions/upload-artifact@v4 with: name: builds-ios - path: build/ios/iphoneos/Runner.app + path: build/ios/iphoneos/Runner.app.zip build_ipa: name: IPA @@ -47,6 +49,8 @@ jobs: uses: ./.github/actions/flutter-common # This seems to be related to https://github.com/actions/runner-images/issues/12758 + # Select appropriate Xcode version from + # https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode - name: Xcode setup run: | sudo xcode-select --switch /Applications/Xcode_16.4.app