Added tagref output

This commit is contained in:
Corey Butler 2020-01-27 18:14:23 -06:00 committed by GitHub
parent 010bb4a48a
commit 81eb23ba3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -174,6 +174,7 @@ async function run() {
core.setOutput('tagsha', newTag.data.sha)
core.setOutput('taguri', newReference.data.url)
core.setOutput('tagmessage', tagMsg.trim())
core.setOutput('tagref', newReference.data.ref)
}
} catch (error) {
core.warning(error.message)
@ -181,6 +182,7 @@ async function run() {
core.setOutput('tagsha', '')
core.setOutput('taguri', '')
core.setOutput('tagmessage', '')
core.setOutput('tagref', '')
}
}