fix: disable aab build if nightly or beta
This commit is contained in:
parent
eeca6aac74
commit
ee34291a54
1 changed files with 2 additions and 0 deletions
2
.github/workflows/auth-release.yml
vendored
2
.github/workflows/auth-release.yml
vendored
|
@ -72,6 +72,8 @@ jobs:
|
|||
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
|
||||
|
||||
- name: Build PlayStore AAB
|
||||
# disable this step if release tag contains nightly or beta
|
||||
if: startsWith(github.ref, 'refs/tags/auth-v') && !contains(github.ref, 'nightly') && !contains(github.ref, 'beta')
|
||||
run: |
|
||||
flutter build appbundle --release --flavor playstore --dart-define=app.flavor=playstore
|
||||
env:
|
||||
|
|
Loading…
Add table
Reference in a new issue