1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-02 18:49:47 +00:00

updated github workflows to new names

This commit is contained in:
Benimautner 2023-01-07 13:44:51 +01:00
parent 7e4f4e79f8
commit d0dcb4452d
3 changed files with 6 additions and 6 deletions

View File

@ -35,5 +35,5 @@ jobs:
run: flutter pub get run: flutter pub get
- name: Build Debug Build - name: Build Debug Build
run: flutter build apk --debug --flavor main run: flutter build apk --debug --flavor core

View File

@ -49,5 +49,5 @@ jobs:
echo "keyAlias=${{ secrets.ANDROID_KEY_ALIAS }}" >> android/key.properties echo "keyAlias=${{ secrets.ANDROID_KEY_ALIAS }}" >> android/key.properties
- name: Build Debug Build - name: Build Debug Build
run: flutter build apk --debug --flavor main run: flutter build apk --debug --flavor core

View File

@ -55,16 +55,16 @@ jobs:
echo "keyAlias=${{ secrets.ANDROID_KEY_ALIAS }}" >> android/key.properties echo "keyAlias=${{ secrets.ANDROID_KEY_ALIAS }}" >> android/key.properties
- name: Build Android App Bundle - name: Build Android App Bundle
run: flutter build appbundle --flavor main run: flutter build appbundle --flavor core
- name: Build Android APK - name: Build Android APK
run: flutter build apk --flavor main run: flutter build apk --flavor core
- name: Upload build artifacts - name: Upload build artifacts
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: app-release-bundle name: app-release-bundle
path: | path: |
build/app/outputs/bundle/mainRelease/app-main-release.aab build/app/outputs/bundle/coreRelease/app-core-release.aab
build/app/outputs/flutter-apk/app-main-release.apk build/app/outputs/flutter-apk/app-core-release.apk