mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-01-15 20:58:41 +00:00
split runs
This commit is contained in:
parent
a4210848f8
commit
951206dcfa
1 changed files with 6 additions and 3 deletions
9
.github/workflows/release_github.yml
vendored
9
.github/workflows/release_github.yml
vendored
|
|
@ -21,9 +21,10 @@ jobs:
|
||||||
uses: subosito/flutter-action@v2
|
uses: subosito/flutter-action@v2
|
||||||
with:
|
with:
|
||||||
channel: stable
|
channel: stable
|
||||||
run: flutter pub get
|
run: |
|
||||||
run: flutter analyze
|
flutter pub get
|
||||||
run: flutter test
|
flutter analyze
|
||||||
|
flutter test
|
||||||
|
|
||||||
- name: Create key.properties file
|
- name: Create key.properties file
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -31,6 +32,8 @@ jobs:
|
||||||
echo "keyPassword=${{ secrets.ALIAS_PASSWORD }}" >> ./android/key.properties
|
echo "keyPassword=${{ secrets.ALIAS_PASSWORD }}" >> ./android/key.properties
|
||||||
echo "keyAlias=androidreleasekey" >> key.properties
|
echo "keyAlias=androidreleasekey" >> key.properties
|
||||||
echo "storeFile=./android/keystore.jks" >> ./android/key.properties
|
echo "storeFile=./android/keystore.jks" >> ./android/key.properties
|
||||||
|
|
||||||
|
- name: Create keystore file
|
||||||
run: base64 -d <<< $KEYSTORE_FILE > ./android/keystore.jks
|
run: base64 -d <<< $KEYSTORE_FILE > ./android/keystore.jks
|
||||||
|
|
||||||
- name: Build Android APK
|
- name: Build Android APK
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue