From 36d6cb5eff2872670fd9affad7c6387bed3c9544 Mon Sep 17 00:00:00 2001 From: Kyle Hekkers <51341878+List0734@users.noreply.github.com> Date: Wed, 29 Oct 2025 06:37:55 +0000 Subject: [PATCH 1/5] Update Podfile --- ios/Podfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ios/Podfile b/ios/Podfile index fe628cb8c..974aea706 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -37,5 +37,9 @@ end post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) + target.build_configurations.each do |config| + config.build_settings['ENABLE_BITCODE'] = 'NO' + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.0' + end end end From 17af3347d1840031a1330012eda7fdb879a2d4dc Mon Sep 17 00:00:00 2001 From: Kyle Hekkers <51341878+List0734@users.noreply.github.com> Date: Wed, 29 Oct 2025 06:39:29 +0000 Subject: [PATCH 2/5] Create manual-build-apple.yml --- .github/workflows/manual-build-apple.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/manual-build-apple.yml diff --git a/.github/workflows/manual-build-apple.yml b/.github/workflows/manual-build-apple.yml new file mode 100644 index 000000000..79281beb2 --- /dev/null +++ b/.github/workflows/manual-build-apple.yml @@ -0,0 +1,15 @@ +name: Manual Build Apple + +on: + workflow_dispatch: + inputs: + ref: + description: "Git ref (branch, tag, or commit) to build" + required: true + default: main + +jobs: + call_build_apple: + uses: ./.github/workflows/build-apple.yaml + with: + ref: ${{ github.event.inputs.ref }} From 3820e784ee56dd215d5c1a5efba4c3d2125b804e Mon Sep 17 00:00:00 2001 From: Kyle Hekkers <51341878+List0734@users.noreply.github.com> Date: Wed, 29 Oct 2025 06:43:56 +0000 Subject: [PATCH 3/5] Update build-apple.yml --- .github/workflows/build-apple.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-apple.yml b/.github/workflows/build-apple.yml index 4faa73137..668bd61f2 100644 --- a/.github/workflows/build-apple.yml +++ b/.github/workflows/build-apple.yml @@ -1,10 +1,18 @@ name: Build Apple + on: workflow_call: inputs: ref: required: true type: string + workflow_dispatch: + inputs: + ref: + description: "Branch, tag, or commit to build" + required: true + default: main + jobs: build_ios: name: iOS @@ -13,7 +21,7 @@ jobs: - name: Checkout application uses: actions/checkout@v5 with: - ref: ${{ inputs.ref }} + ref: ${{ inputs.ref || github.event.inputs.ref || 'main' }} # This seems to be related to https://github.com/actions/runner-images/issues/12758 # Select appropriate Xcode version from @@ -43,14 +51,11 @@ jobs: - name: Checkout application uses: actions/checkout@v5 with: - ref: ${{ inputs.ref }} + ref: ${{ inputs.ref || github.event.inputs.ref || 'main' }} - name: Common flutter setup 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 @@ -73,7 +78,7 @@ jobs: - name: Checkout application uses: actions/checkout@v5 with: - ref: ${{ inputs.ref }} + ref: ${{ inputs.ref || github.event.inputs.ref || 'main' }} - name: Common flutter setup uses: ./.github/actions/flutter-common @@ -87,4 +92,4 @@ jobs: - uses: actions/upload-artifact@v4 with: name: builds-macos - path: build/macos/Build/Products/Release/wger.app.zip \ No newline at end of file + path: build/macos/Build/Products/Release/wger.app.zip From fafb303c61fc3c7cbf8f45691a7d037e51613c26 Mon Sep 17 00:00:00 2001 From: List0734 Date: Tue, 11 Nov 2025 15:09:07 -0600 Subject: [PATCH 4/5] Revert "Update build-apple.yml" This reverts commit 3820e784ee56dd215d5c1a5efba4c3d2125b804e. --- .github/workflows/build-apple.yml | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-apple.yml b/.github/workflows/build-apple.yml index 668bd61f2..4faa73137 100644 --- a/.github/workflows/build-apple.yml +++ b/.github/workflows/build-apple.yml @@ -1,18 +1,10 @@ name: Build Apple - on: workflow_call: inputs: ref: required: true type: string - workflow_dispatch: - inputs: - ref: - description: "Branch, tag, or commit to build" - required: true - default: main - jobs: build_ios: name: iOS @@ -21,7 +13,7 @@ jobs: - name: Checkout application uses: actions/checkout@v5 with: - ref: ${{ inputs.ref || github.event.inputs.ref || 'main' }} + ref: ${{ inputs.ref }} # This seems to be related to https://github.com/actions/runner-images/issues/12758 # Select appropriate Xcode version from @@ -51,11 +43,14 @@ jobs: - name: Checkout application uses: actions/checkout@v5 with: - ref: ${{ inputs.ref || github.event.inputs.ref || 'main' }} + ref: ${{ inputs.ref }} - name: Common flutter setup 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 @@ -78,7 +73,7 @@ jobs: - name: Checkout application uses: actions/checkout@v5 with: - ref: ${{ inputs.ref || github.event.inputs.ref || 'main' }} + ref: ${{ inputs.ref }} - name: Common flutter setup uses: ./.github/actions/flutter-common @@ -92,4 +87,4 @@ jobs: - uses: actions/upload-artifact@v4 with: name: builds-macos - path: build/macos/Build/Products/Release/wger.app.zip + path: build/macos/Build/Products/Release/wger.app.zip \ No newline at end of file From c3478ab4c95eed40bd1c38c19755da2f01470489 Mon Sep 17 00:00:00 2001 From: List0734 Date: Tue, 11 Nov 2025 15:09:21 -0600 Subject: [PATCH 5/5] Revert "Create manual-build-apple.yml" This reverts commit 17af3347d1840031a1330012eda7fdb879a2d4dc. --- .github/workflows/manual-build-apple.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .github/workflows/manual-build-apple.yml diff --git a/.github/workflows/manual-build-apple.yml b/.github/workflows/manual-build-apple.yml deleted file mode 100644 index 79281beb2..000000000 --- a/.github/workflows/manual-build-apple.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Manual Build Apple - -on: - workflow_dispatch: - inputs: - ref: - description: "Git ref (branch, tag, or commit) to build" - required: true - default: main - -jobs: - call_build_apple: - uses: ./.github/workflows/build-apple.yaml - with: - ref: ${{ github.event.inputs.ref }}