From 951206dcfa41eb64864991f2eea4193fadf0cd4c Mon Sep 17 00:00:00 2001 From: otsmr Date: Fri, 18 Jul 2025 20:43:18 +0200 Subject: [PATCH] split runs --- .github/workflows/release_github.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_github.yml b/.github/workflows/release_github.yml index 668aebe..6b6424d 100644 --- a/.github/workflows/release_github.yml +++ b/.github/workflows/release_github.yml @@ -21,9 +21,10 @@ jobs: uses: subosito/flutter-action@v2 with: channel: stable - run: flutter pub get - run: flutter analyze - run: flutter test + run: | + flutter pub get + flutter analyze + flutter test - name: Create key.properties file run: | @@ -31,6 +32,8 @@ jobs: echo "keyPassword=${{ secrets.ALIAS_PASSWORD }}" >> ./android/key.properties echo "keyAlias=androidreleasekey" >> key.properties echo "storeFile=./android/keystore.jks" >> ./android/key.properties + + - name: Create keystore file run: base64 -d <<< $KEYSTORE_FILE > ./android/keystore.jks - name: Build Android APK