From ccbcac87a7d1ee8e2aa18b7dfb73c1d9ec18073b Mon Sep 17 00:00:00 2001 From: a-mabe Date: Thu, 2 Jan 2025 20:29:54 -0500 Subject: [PATCH] Test --- .github/workflows/nightly_build.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/nightly_build.yaml b/.github/workflows/nightly_build.yaml index a7aff741..520baccd 100644 --- a/.github/workflows/nightly_build.yaml +++ b/.github/workflows/nightly_build.yaml @@ -12,7 +12,7 @@ on: jobs: - BuildAndroidRelease: + BuildAndroid: runs-on: ubuntu-latest environment: build permissions: @@ -54,10 +54,10 @@ jobs: echo "keyPassword=${{ secrets.SIGNING_KEY_PASSWORD }}" >> android/key.properties echo "keyAlias=${{ secrets.SIGNING_KEY_ALIAS }}" >> android/key.properties - - name: Build Android Release APK + - name: Build Android Debug APK run: flutter build apk --debug - - name: Build Android Release AppBundle + - name: Build Android Debug AppBundle run: flutter build appbundle --debug - name: Upload APK Artifact @@ -72,7 +72,7 @@ jobs: name: debug-aab path: build/app/outputs/flutter-apk/app-debug.aab - BuildiOSRelease: + BuildiOS: runs-on: macos-latest environment: build permissions: @@ -123,7 +123,7 @@ jobs: - name: Upload IPA Artifact uses: actions/upload-artifact@v3 with: - name: release-ipa + name: debug-ipa path: build/ios/ipa/*.ipa - name: Clean up keychain and provisioning profile