We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bdf324 commit a41949eCopy full SHA for a41949e
.github/workflows/publish_to_googe_playconsole.yml
@@ -30,12 +30,15 @@ jobs:
30
run: .flutter/bin/dart run melos bootstrap
31
32
- name: Build Android AppBundle
33
- run: .flutter/bin/dart run melos build-appbundle-play
+ run: |
34
+ .flutter/bin/dart run melos build-appbundle-play
35
+ echo "Check release files"
36
+ ls build/app/outputs/bundle/playRelease
37
38
- name: Deploy to Google Play (Beta)
39
uses: r0adkll/upload-google-play@v1
40
with:
41
serviceAccountJson: ${{ secrets.GOOGLE_PLAY_JSON }}
42
packageName: org.encointer.wallet
- releaseFiles: app/build/app/outputs/bundle/release/app-release.aab
43
+ releaseFiles: build/app/outputs/bundle/playRelease/app-play-release.aab
44
track: beta # Publish to the beta track
0 commit comments