diff options
author | t895 <clombardo169@gmail.com> | 2024-01-03 23:01:31 +0100 |
---|---|---|
committer | t895 <clombardo169@gmail.com> | 2024-01-03 23:01:31 +0100 |
commit | 3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755 (patch) | |
tree | f0bc3588105789c4d2689e05316deb48f7e660c7 /.github | |
parent | actions: android: Resolve PR commits to link (diff) | |
download | yuzu-3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755.tar yuzu-3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755.tar.gz yuzu-3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755.tar.bz2 yuzu-3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755.tar.lz yuzu-3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755.tar.xz yuzu-3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755.tar.zst yuzu-3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755.zip |
Diffstat (limited to '.github')
-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) { console.log(`New tag: ${newTag}`); if (commit) { let channelName = channel[0].toUpperCase() + channel.slice(1); - console.info(`Committing pending commit as ${channelName} #${tagNumber + 1}`); - await execa("git", ['commit', '-m', `${channelName} #${tagNumber + 1}`]); + console.info(`Committing pending commit as ${channelName} ${tagNumber + 1}`); + await execa("git", ['commit', '-m', `${channelName} ${tagNumber + 1}`]); } console.info('Pushing tags to GitHub ...'); await execa("git", ['tag', newTag]); |