Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy-to-play-store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ jobs:
RELEASE_KEY_PASSWORD: ${{ secrets.RELEASE_KEY_PASSWORD }}

- name: Check if AAB exists
run: test -f app/build/outputs/bundle/release/app-prod-release.aab
run: test -f app/build/outputs/bundle/prodRelease/app-prod-release.aab

- name: Upload to Google Play Store
uses: r0adkll/upload-google-play@v1
with:
serviceAccountJsonPlainText: ${{ secrets.PLAY_STORE_SERVICE_ACCOUNT_KEY }}
packageName: com.vicky7230.tasker2 # <<-- IMPORTANT: Replace with your actual app's package name
releaseFiles: app/build/outputs/bundle/release/app-prod-release.aab # <<-- IMPORTANT: Verify this path for your AAB
releaseFiles: app/build/outputs/bundle/prodRelease/app-prod-release.aab # <<-- IMPORTANT: Verify this path for your AAB
track: production # Options: 'production', 'beta', 'alpha', 'internal', 'internalsharing'
status: completed # Options: 'completed', 'draft', 'inProgress', 'halted'
# Optional parameters:
Expand Down
Loading
Loading