Skip to content

Commit

Permalink
fix: remove prefix from git-branch parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
dhpagani committed Jul 4, 2022
1 parent 2a7cc0e commit ed8c9f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Expand Up @@ -29,7 +29,7 @@ async function run() {
const gitUserName = core.getInput('git-user-name')
const gitUserEmail = core.getInput('git-user-email')
const gitPush = core.getBooleanInput('git-push')
const gitBranch = core.getInput('git-branch')
const gitBranch = core.getInput('git-branch').replace('refs/heads/', '')
const tagPrefix = core.getInput('tag-prefix')
const preset = !core.getInput('config-file-path') ? core.getInput('preset') : ''
const preCommitFile = core.getInput('pre-commit')
Expand Down

0 comments on commit ed8c9f5

Please sign in to comment.