Allow the version upgrade to be executed on a separate branch
This commit is contained in:
parent
60351cdb6f
commit
5d776519d3
|
@ -31,6 +31,10 @@ inputs:
|
||||||
description: 'Custom dir to the package'
|
description: 'Custom dir to the package'
|
||||||
default: ''
|
default: ''
|
||||||
required: false
|
required: false
|
||||||
|
branch:
|
||||||
|
description: 'A separate branch to perform the version bump on'
|
||||||
|
default: ''
|
||||||
|
required: false
|
||||||
default:
|
default:
|
||||||
description: 'Set a default version bump to use'
|
description: 'Set a default version bump to use'
|
||||||
default: 'patch'
|
default: 'patch'
|
||||||
|
|
3
index.js
3
index.js
|
@ -78,6 +78,9 @@ Toolkit.run(async tools => {
|
||||||
currentBranch = process.env.GITHUB_HEAD_REF
|
currentBranch = process.env.GITHUB_HEAD_REF
|
||||||
isPullRequest = true
|
isPullRequest = true
|
||||||
}
|
}
|
||||||
|
if (process.env['INPUT_TAG-BRANCH']) {
|
||||||
|
currentBranch = process.env['INPUT_TAG-BRANCH']
|
||||||
|
}
|
||||||
console.log('currentBranch:', currentBranch)
|
console.log('currentBranch:', currentBranch)
|
||||||
// do it in the current checked out github branch (DETACHED HEAD)
|
// do it in the current checked out github branch (DETACHED HEAD)
|
||||||
// important for further usage of the package.json version
|
// important for further usage of the package.json version
|
||||||
|
|
Loading…
Reference in New Issue