This commit is contained in:
Stephan 2021-12-10 17:42:04 +01:00
parent 4e8f7f271f
commit 5595250e09

View File

@ -10,12 +10,14 @@ jobs:
with:
script: |
const tag = "v" + "${{ github.ref }}".substring(19)
try {
const rel = github.repos.getReleaseByTag({
owner: context.repo.owner,
repo: context.repo.repo,
tag: tag
})
if (rel === null) {
}
catch {
core.setFailed("Could not find a release for tag " + tag)
}