Skip to content

Commit a41949e

Browse files
committed
try fix release binary location and log output directory
1 parent 7bdf324 commit a41949e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/publish_to_googe_playconsole.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,15 @@ jobs:
3030
run: .flutter/bin/dart run melos bootstrap
3131

3232
- name: Build Android AppBundle
33-
run: .flutter/bin/dart run melos build-appbundle-play
33+
run: |
34+
.flutter/bin/dart run melos build-appbundle-play
35+
echo "Check release files"
36+
ls build/app/outputs/bundle/playRelease
3437
3538
- name: Deploy to Google Play (Beta)
3639
uses: r0adkll/upload-google-play@v1
3740
with:
3841
serviceAccountJson: ${{ secrets.GOOGLE_PLAY_JSON }}
3942
packageName: org.encointer.wallet
40-
releaseFiles: app/build/app/outputs/bundle/release/app-release.aab
43+
releaseFiles: build/app/outputs/bundle/playRelease/app-play-release.aab
4144
track: beta # Publish to the beta track

0 commit comments

Comments
 (0)