Skip to content

Commit

Permalink
Correct output for play store release automation
Browse files Browse the repository at this point in the history
  • Loading branch information
kewisch committed Oct 21, 2024
1 parent c4190a6 commit 5688c0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/shippable_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -729,6 +729,7 @@ jobs:
releaseTarget: ${{ matrix.releaseTarget }}
appSha: ${{ steps.shanotes.outputs.app_sha }}
appName: ${{ matrix.appName }}
skipGooglePlay: ${{ inputs.skipGooglePlay }}
with:
script: |
await core.summary
Expand All @@ -755,7 +756,7 @@ jobs:
core.setOutput(`${process.env.appName}_release_url`, process.env.ghReleaseUrl);
}
if (process.env.playTargetTrack) {
if (process.env.skipGooglePlay != "true" && process.env.playTargetTrack && process.env.releaseTarget.includes("play")) {
await core.summary.addRaw(`Released to the <b>${process.env.playTargetTrack}</b> track on Google Play`, true).write();
}
Expand Down

0 comments on commit 5688c0d

Please sign in to comment.