diff options
| author | 2024-01-03 17:01:31 -0500 | |
|---|---|---|
| committer | 2024-01-03 17:01:31 -0500 | |
| commit | 3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755 (patch) | |
| tree | f0bc3588105789c4d2689e05316deb48f7e660c7 | |
| parent | actions: android: Resolve PR commits to link (diff) | |
| download | yuzu-3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755.tar.gz yuzu-3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755.tar.xz yuzu-3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755.zip | |
actions: android: Prevent resolving tag commit to PR link
| -rw-r--r-- | .github/workflows/android-merge.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/android-merge.js b/.github/workflows/android-merge.js index 0e1e5f1a1..44ab56e44 100644 --- a/.github/workflows/android-merge.js +++ b/.github/workflows/android-merge.js | |||
| @@ -90,8 +90,8 @@ async function tagAndPush(github, owner, repo, execa, commit=false) { | |||
| 90 | console.log(`New tag: ${newTag}`); | 90 | console.log(`New tag: ${newTag}`); |
| 91 | if (commit) { | 91 | if (commit) { |
| 92 | let channelName = channel[0].toUpperCase() + channel.slice(1); | 92 | let channelName = channel[0].toUpperCase() + channel.slice(1); |
| 93 | console.info(`Committing pending commit as ${channelName} #${tagNumber + 1}`); | 93 | console.info(`Committing pending commit as ${channelName} ${tagNumber + 1}`); |
| 94 | await execa("git", ['commit', '-m', `${channelName} #${tagNumber + 1}`]); | 94 | await execa("git", ['commit', '-m', `${channelName} ${tagNumber + 1}`]); |
| 95 | } | 95 | } |
| 96 | console.info('Pushing tags to GitHub ...'); | 96 | console.info('Pushing tags to GitHub ...'); |
| 97 | await execa("git", ['tag', newTag]); | 97 | await execa("git", ['tag', newTag]); |