From b3db723f94efa677984666e1022069510133b4b5 Mon Sep 17 00:00:00 2001 From: Scriptbash <98601298+Scriptbash@users.noreply.github.com> Date: Sun, 29 Mar 2026 15:06:56 -0400 Subject: [PATCH 1/2] fix macos debug build --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d26ed24f..7c29c3ff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,6 +51,11 @@ jobs: channel: 'stable' architecture: x64 - run: flutter pub get + - name: Disable macOS code signing + run: | + echo "CODE_SIGNING_ALLOWED=NO" >> macos/Runner/Configs/Debug.xcconfig + echo "CODE_SIGNING_REQUIRED=NO" >> macos/Runner/Configs/Debug.xcconfig + echo "CODE_SIGN_IDENTITY=" >> macos/Runner/Configs/Debug.xcconfig - run: flutter build ios --debug --no-codesign - uses: actions/upload-artifact@v7 with: From 40c525eceeca3bda971cba92e74cc209995ebc0e Mon Sep 17 00:00:00 2001 From: Scriptbash <98601298+Scriptbash@users.noreply.github.com> Date: Sun, 29 Mar 2026 15:14:06 -0400 Subject: [PATCH 2/2] wip --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7c29c3ff..6c6da82a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,11 +51,6 @@ jobs: channel: 'stable' architecture: x64 - run: flutter pub get - - name: Disable macOS code signing - run: | - echo "CODE_SIGNING_ALLOWED=NO" >> macos/Runner/Configs/Debug.xcconfig - echo "CODE_SIGNING_REQUIRED=NO" >> macos/Runner/Configs/Debug.xcconfig - echo "CODE_SIGN_IDENTITY=" >> macos/Runner/Configs/Debug.xcconfig - run: flutter build ios --debug --no-codesign - uses: actions/upload-artifact@v7 with: @@ -74,6 +69,11 @@ jobs: with: channel: 'stable' - run: flutter pub get + - name: Disable macOS code signing + run: | + echo "CODE_SIGNING_ALLOWED=NO" >> macos/Runner/Configs/Debug.xcconfig + echo "CODE_SIGNING_REQUIRED=NO" >> macos/Runner/Configs/Debug.xcconfig + echo "CODE_SIGN_IDENTITY=" >> macos/Runner/Configs/Debug.xcconfig - run: flutter build macos --debug - uses: actions/upload-artifact@v7 with: