version bump is not pushed when tag should not pushed

This commit is contained in:
Fabian Feichter 2020-10-19 11:05:25 +02:00
parent fce931e5e4
commit 2882775f78
1 changed files with 3 additions and 2 deletions

View File

@ -105,12 +105,13 @@ Toolkit.run(async tools => {
'but that doesnt matter because you dont need that git commit, thats only for "actions/checkout@v1"')
}
const remoteRepo = `https://${process.env.GITHUB_ACTOR}:${process.env.GITHUB_TOKEN}@github.com/${process.env.GITHUB_REPOSITORY}.git`
if (process.env['INPUT_SKIP-TAG'] !== 'true') {
const remoteRepo = `https://${process.env.GITHUB_ACTOR}:${process.env.GITHUB_TOKEN}@github.com/${process.env.GITHUB_REPOSITORY}.git`
// console.log(Buffer.from(remoteRepo).toString('base64'))
await tools.runInWorkspace('git', ['tag', newVersion])
await tools.runInWorkspace('git', ['push', remoteRepo, '--follow-tags'])
await tools.runInWorkspace('git', ['push', remoteRepo, '--tags'])
} else {
await tools.runInWorkspace('git', ['push', remoteRepo])
}
} catch (e) {
tools.log.fatal(e)