From eeca6aac746e71f996fe33ad03fec07a204c6144 Mon Sep 17 00:00:00 2001 From: Prateek Sunal Date: Mon, 25 Mar 2024 23:41:12 +0530 Subject: [PATCH 1/2] fix: libffi error for now --- auth/linux/packaging/appimage/make_config.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/auth/linux/packaging/appimage/make_config.yaml b/auth/linux/packaging/appimage/make_config.yaml index 39d925e0b..6e04b4178 100644 --- a/auth/linux/packaging/appimage/make_config.yaml +++ b/auth/linux/packaging/appimage/make_config.yaml @@ -23,5 +23,4 @@ startup_notify: false # # include: # - libcurl.so.4 -include: - - libffi.so.7 +include: [] From ee34291a540ca3b11044e595d2d16a867a334bdf Mon Sep 17 00:00:00 2001 From: Prateek Sunal Date: Mon, 25 Mar 2024 23:42:31 +0530 Subject: [PATCH 2/2] fix: disable aab build if nightly or beta --- .github/workflows/auth-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/auth-release.yml b/.github/workflows/auth-release.yml index af2745655..1203bc4a3 100644 --- a/.github/workflows/auth-release.yml +++ b/.github/workflows/auth-release.yml @@ -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: