From cb93a0658ffd65a3f931c3dfea926a4e3958249c Mon Sep 17 00:00:00 2001 From: Manav Date: Sat, 28 Jan 2023 14:58:47 +0530 Subject: [PATCH] Use direct path Removes the dependency of this build step on the previous build step. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5f228ae9e..ba4f058801 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: # Build Play store aab. - name: Build - run: flutter build appbundle --release --flavor playstore && mv build/app/outputs/bundle/playstoreRelease/app-playstore-release.aab build/app/outputs/flutter-apk/ente-auth.aab + run: flutter build appbundle --release --flavor playstore env: SIGNING_KEY_PATH: "/home/runner/work/_temp/keystore/ente_auth_key.jks" SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }} @@ -82,5 +82,5 @@ jobs: with: serviceAccountJsonPlainText: ${{ secrets.SERVICE_ACCOUNT_JSON }} packageName: io.ente.auth - releaseFiles: build/app/outputs/flutter-apk/ente-auth.aab + releaseFiles: build/app/outputs/bundle/playstoreRelease/app-playstore-release.aab track: internal