use app bundles for huawei (v 1.5.5)

This commit is contained in:
Herbert Poul
2020-04-03 14:46:22 +02:00
parent 45ca79d4ce
commit d174d9e43a
6 changed files with 18 additions and 4 deletions

View File

@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
flavor: ['samsungapps', 'sideload', 'huawei']
fail-fast: true
steps:
@ -36,7 +36,13 @@ jobs:
GIT_COMMITTER_EMAIL: 'herbert.github.ci@codeux.design'
run: "./authpass/_tools/ci-release.sh android ${{ matrix.flavor }}"
- uses: actions/upload-artifact@v1
if: matrix.flavor != 'huawei'
with:
name: app-${{ matrix.flavor }}-release-${{steps.buildapk.outputs.appbuildnumber}}.apk
path: authpass/build/app/outputs/apk/${{ matrix.flavor }}/release/app-${{ matrix.flavor }}-release.apk
- uses: actions/upload-artifact@v1
if: matrix.flavor == 'huawei'
with:
name: app-${{ matrix.flavor }}-release-${{steps.buildapk.outputs.appbuildnumber}}.aab
path: authpass/build/app/outputs/bundle/${{ matrix.flavor }}Release/app-${{ matrix.flavor }}-release.aab

1
CHANGELOG.md Symbolic link
View File

@ -0,0 +1 @@
authpass/CHANGELOG.md

1
authpass/.github Symbolic link
View File

@ -0,0 +1 @@
../.github

View File

@ -1,6 +1,11 @@
# 1.5.5
* Allow changing of database name.
* Large Screens (Tablet/Desktop): Improved responsiveness of search box.
# 1.5.3
Fixed a few dark mode problems, Fixed potential crash.
* Fixed a few dark mode problems, Fixed potential crash.
# 1.5.2

View File

@ -74,7 +74,8 @@ case "$1" in
;;
huawei)
export GRADLE_USER_HOME=$(pwd)/_tools/secrets/gradle_home
$FLT build -v apk -t lib/env/production.dart --release --build-number $buildnumber --flavor huawei
#$FLT build -v apk -t lib/env/production.dart --release --build-number $buildnumber --flavor huawei
$FLT build -v appbundle -t lib/env/production.dart --release --build-number $buildnumber --flavor huawei
;;
sideload)
export GRADLE_USER_HOME=$(pwd)/_tools/secrets/gradle_home

View File

@ -1,7 +1,7 @@
name: authpass
description: Password Manager with support for kdbx 3.x and 4.x
version: 1.5.4+127
version: 1.5.5+128
environment:
sdk: ">=2.7.0 <3.0.0"