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

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', '')
}
}