Skip to content

Commit

Permalink
Merge pull request #42 from TriPSs/master
Browse files Browse the repository at this point in the history
Release new fixes
  • Loading branch information
TriPSs authored Jul 27, 2020
2 parents bf7e9cb + 16f3145 commit 09a4366
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,11 @@ async function run() {
await git.createTag(gitTag)

core.info('Push all changes')
await git.push()
try{
await git.push()
}catch (error) {
core.setFailed(error.message)
}

// Set outputs so other actions (for example actions/create-release) can use it
core.setOutput('changelog', stringChangelog)
Expand Down

0 comments on commit 09a4366

Please sign in to comment.