From 811cd377a83f38440e724c27e9b0bd0a188b01cc Mon Sep 17 00:00:00 2001 From: Vansh Gandhi Date: Wed, 5 Jun 2024 14:39:51 -0700 Subject: [PATCH] Fix Play Store release action (#378) --- .github/workflows/publish_play_store_update.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_play_store_update.yaml b/.github/workflows/publish_play_store_update.yaml index 78b14ac46..cb04e0ed3 100644 --- a/.github/workflows/publish_play_store_update.yaml +++ b/.github/workflows/publish_play_store_update.yaml @@ -46,8 +46,8 @@ jobs: echo "version_code=$VERSION_CODE" >> $GITHUB_OUTPUT - name: Setup Gradle uses: gradle/actions/setup-gradle@v3 - - name: Assemble - run: ./gradlew assemble + - name: Bundle + run: ./gradlew bundleRelease env: ORG_GRADLE_PROJECT_VERSION_CODE: ${{ steps.version_code.outputs.version_code }} ORG_GRADLE_PROJECT_SENTRY_DSN: ${{ secrets.SENTRY_DSN }}