version bump is not pushed when tag should not pushed
This commit is contained in:
parent
fce931e5e4
commit
2882775f78
5
index.js
5
index.js
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue