1
0
This commit is contained in:
Stephan 2022-03-18 17:58:45 +01:00
parent 4f5e3068cc
commit b3615798ac

View File

@ -19,18 +19,12 @@ module.exports = /*async*/ ({github, context, core}) => {
console.log(`Validate version '${version}'.`)
// git branch must exist
try {
const ref = await restapi.git.getRef({
const refs = await restapi.git.listMatchingRefs({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'heads/release/' + version
ref: `heads/release/${version}`
})
if (ref == null) {
core.setFailed(`Could not find branch 'release/${version}'.`)
return
}
}
catch (error) {
if (firstOrDefault(refs, (x) => x.ref == `heads/release/${version}`) == null) {
core.setFailed(`Could not find branch 'release/${version}'.`)
return
}
@ -72,20 +66,15 @@ module.exports = /*async*/ ({github, context, core}) => {
console.log(`Found yet-unpublished GitHub Release for tag '${tag}'.`)
// tag must not exist
try {
const refs = await restapi.git.listMatchingRefs({
owner: context.repo.owner,
repo: context.repo.repo,
//ref: 'tags/' + tag
ref: 'tags/wip'
ref: `tags/${tag}`
})
console.log(refs)
if (firstOrDefault(refs.data, (x) => x.ref == `tags/${tag}`) != null) {
core.setFailed(`Tag '${tag}' already exists.`)
return
}
catch (error) {
// this is expected - the tag should not exist
}
console.log(`Verified that tag '${tag}' does not exist yet.`)
console.log('Release is valid.')