1
0
This commit is contained in:
Stephan 2021-12-12 22:36:34 +01:00
parent 4dc95bf252
commit f7c5b3e956

View File

@ -87,12 +87,12 @@ jobs:
script: |
const hz = require("./.github/workflows/hz.js")(github, context)
const ref = "${{ github.ref }}"
const tag = await hz.getRefReleaseTag(ref)
const tag = hz.getRefReleaseTag(ref)
if (tag === null) {
core.setFailed(`Invalid reference ${ref} is not release/<version>.`)
return
}
var rel = hz.getReleaseByTag(tag)
var rel = await hz.getReleaseByTag(tag)
await github.repos.updateRelease({
owner: context.repo.owner,
repo: context.repo.repo,