Skip to content

Commit

Permalink
Merge pull request #8661 from coreycb/fix-publish-release-summary
Browse files Browse the repository at this point in the history
Fix skipFtp and packageFormat in publish_release summary
  • Loading branch information
wmontwe authored Dec 9, 2024
2 parents 239d341 + 9c7042a commit b58e604
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/shippable_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -925,6 +925,8 @@ jobs:
skipGooglePlay: ${{ inputs.skipGooglePlay }}
ftpUrlPath: ${{ steps.ftp_destination.outputs.FTP_URL_PATH }}
ftpUrlPathNightlyLatest: ${{ steps.ftp_destination.outputs.FTP_URL_PATH_NIGHTLY_LATEST }}
skipFtp: ${{ inputs.skipFtp }}
packageFormat: ${{ matrix.packageFormat }}
with:
script: |
await core.summary
Expand Down Expand Up @@ -955,7 +957,7 @@ jobs:
await core.summary.addRaw(`Released to the <b>${process.env.playTargetTrack}</b> track on Google Play`, true).write();
}
if (process.env.skipFtp != "true" && process.env.releaseTarget.includes("ftp") && matrix.packageFormat == 'apk') {
if (process.env.skipFtp != "true" && process.env.releaseTarget.includes("ftp") && process.env.packageFormat == 'apk') {
await core.summary
.addRaw(`Published to FTP at`)
.addLink(process.env.ftpUrlPath, process.env.ftpUrlPath)
Expand Down

0 comments on commit b58e604

Please sign in to comment.