exp
This commit is contained in:
parent
4e8f7f271f
commit
5595250e09
14
.github/workflows/publish-release.yml
vendored
14
.github/workflows/publish-release.yml
vendored
|
@ -10,12 +10,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
const tag = "v" + "${{ github.ref }}".substring(19)
|
const tag = "v" + "${{ github.ref }}".substring(19)
|
||||||
const rel = github.repos.getReleaseByTag({
|
try {
|
||||||
owner: context.repo.owner,
|
const rel = github.repos.getReleaseByTag({
|
||||||
repo: context.repo.repo,
|
owner: context.repo.owner,
|
||||||
tag: tag
|
repo: context.repo.repo,
|
||||||
})
|
tag: tag
|
||||||
if (rel === null) {
|
})
|
||||||
|
}
|
||||||
|
catch {
|
||||||
core.setFailed("Could not find a release for tag " + tag)
|
core.setFailed("Could not find a release for tag " + tag)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user