fix!: fail when there's an error while committing (#376)
This commit is contained in:
2
lib/index.js
generated
2
lib/index.js
generated
File diff suppressed because one or more lines are too long
22
src/main.ts
22
src/main.ts
@@ -79,20 +79,18 @@ core.info(`Running in ${baseDir}`)
|
|||||||
} else core.info('> Not pulling from repo.')
|
} else core.info('> Not pulling from repo.')
|
||||||
|
|
||||||
core.info('> Creating commit...')
|
core.info('> Creating commit...')
|
||||||
const commitData = await git
|
await git
|
||||||
.commit(getInput('message'), matchGitArgs(getInput('commit') || ''))
|
.commit(getInput('message'), matchGitArgs(getInput('commit') || ''))
|
||||||
.catch((err) => {
|
.then(async (data) => {
|
||||||
log(err)
|
log(undefined, data)
|
||||||
|
setOutput('committed', 'true')
|
||||||
|
setOutput('commit_sha', data.commit)
|
||||||
|
await git
|
||||||
|
.revparse(data.commit)
|
||||||
|
.then((long_sha) => setOutput('commit_long_sha', long_sha))
|
||||||
|
.catch((err) => core.warning(`Couldn't parse long SHA:\n${err}`))
|
||||||
})
|
})
|
||||||
if (commitData) {
|
.catch((err) => core.setFailed(err))
|
||||||
log(undefined, commitData)
|
|
||||||
setOutput('committed', 'true')
|
|
||||||
setOutput('commit_sha', commitData.commit)
|
|
||||||
await git
|
|
||||||
.revparse(commitData.commit)
|
|
||||||
.then((long_sha) => setOutput('commit_long_sha', long_sha))
|
|
||||||
.catch((err) => core.warning(`Couldn't parse long SHA:\n${err}`))
|
|
||||||
}
|
|
||||||
|
|
||||||
if (getInput('tag')) {
|
if (getInput('tag')) {
|
||||||
core.info('> Tagging commit...')
|
core.info('> Tagging commit...')
|
||||||
|
|||||||
Reference in New Issue
Block a user