summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/android-merge.js4
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]);