Compare commits
1 Commits
release/7.
...
v7.7.11
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c014e91817 |
40
.github/workflows/hz.js
vendored
40
.github/workflows/hz.js
vendored
@@ -1,40 +0,0 @@
|
|||||||
|
|
||||||
// see https://github.com/actions/github-script
|
|
||||||
// , core, glob, io, exec, require
|
|
||||||
module.exports = function (github, context) {
|
|
||||||
|
|
||||||
var module = {}
|
|
||||||
|
|
||||||
// this is *not* exported
|
|
||||||
function noop ( ) { }
|
|
||||||
|
|
||||||
// this *is* exported
|
|
||||||
module.getReleaseByTag = async function (tag_name) {
|
|
||||||
var rel = null
|
|
||||||
try {
|
|
||||||
// this does *not* return draft releases, so we have to list them
|
|
||||||
//rel = await github.repos.getReleaseByTag({ ... })
|
|
||||||
const rels = await github.repos.listReleases({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo
|
|
||||||
})
|
|
||||||
for (const r of rels.data) {
|
|
||||||
if (r.tag_name === tag_name) {
|
|
||||||
rel = r
|
|
||||||
break
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch (error) {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
return rel
|
|
||||||
}
|
|
||||||
|
|
||||||
module.getRefReleaseTag = function (ref) {
|
|
||||||
// test, must start with 'refs/heads/release/' 19 chars
|
|
||||||
return "v" + ref.substring(19)
|
|
||||||
}
|
|
||||||
|
|
||||||
return module;
|
|
||||||
}
|
|
||||||
79
.github/workflows/publish-release.yml
vendored
79
.github/workflows/publish-release.yml
vendored
@@ -1,33 +1,11 @@
|
|||||||
name: Publish
|
name: Publish Release
|
||||||
|
on: workflow_dispatch
|
||||||
#meh
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
confirm:
|
|
||||||
description: "This is really going to release. Enter \'yolo\' to confirm that you really want to do it."
|
|
||||||
required: true
|
|
||||||
default: ""
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
job:
|
job:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: startsWith(github.ref, 'refs/heads/release/')
|
if: startsWith(github.ref, 'refs/heads/release/')
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: Confirm
|
|
||||||
uses: actions/github-script@v4
|
|
||||||
with:
|
|
||||||
script: |
|
|
||||||
if ("${{ github.event.inputs.confirm }}" != "yolo") {
|
|
||||||
core.setFailed(`Not confirmed (confirm = '${{ github.event.inputs.confirm }}').`)
|
|
||||||
}
|
|
||||||
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Validate the release
|
- name: Validate the release
|
||||||
uses: actions/github-script@v4
|
uses: actions/github-script@v4
|
||||||
with:
|
with:
|
||||||
@@ -35,14 +13,27 @@ jobs:
|
|||||||
# token needed to see draft releases when getting all releases
|
# token needed to see draft releases when getting all releases
|
||||||
github-token: ${{ secrets.MY_GITHUB_TOKEN_TESTREPO }}
|
github-token: ${{ secrets.MY_GITHUB_TOKEN_TESTREPO }}
|
||||||
script: |
|
script: |
|
||||||
const hz = require("./.github/workflows/hz.js")(github, context)
|
const ver = "${{ github.ref }}".substring(19)
|
||||||
const ref = "${{ github.ref }}"
|
const tag = "v" + ver
|
||||||
const tag = hz.getRefReleaseTag(ref)
|
var rel = null
|
||||||
if (tag === null) {
|
try {
|
||||||
core.setFailed(`Invalid reference ${ref} is not release/<version>.`)
|
// this does *not* return draft releases, so we have to list them
|
||||||
|
//rel = await github.repos.getReleaseByTag({ ... })
|
||||||
|
const rels = await github.repos.listReleases({
|
||||||
|
owner: context.repo.owner,
|
||||||
|
repo: context.repo.repo
|
||||||
|
})
|
||||||
|
for (const r of rels.data) {
|
||||||
|
if (r.tag_name === tag) {
|
||||||
|
rel = r
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (error) {
|
||||||
|
core.setFailed(`Could not find a release for tag ${tag}.`)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
var rel = await hz.getReleaseByTag(tag)
|
|
||||||
if (rel === null) {
|
if (rel === null) {
|
||||||
core.setFailed(`Could not find a release for tag ${tag}.`)
|
core.setFailed(`Could not find a release for tag ${tag}.`)
|
||||||
return
|
return
|
||||||
@@ -65,6 +56,11 @@ jobs:
|
|||||||
}
|
}
|
||||||
// everything is OK
|
// everything is OK
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Configure repository
|
- name: Configure repository
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
@@ -85,14 +81,21 @@ jobs:
|
|||||||
uses: actions/github-script@v4
|
uses: actions/github-script@v4
|
||||||
with:
|
with:
|
||||||
script: |
|
script: |
|
||||||
const hz = require("./.github/workflows/hz.js")(github, context)
|
const ver = "${{ github.ref }}".substring(19)
|
||||||
const ref = "${{ github.ref }}"
|
const tag = "v" + ver
|
||||||
const tag = hz.getRefReleaseTag(ref)
|
var rel = null
|
||||||
if (tag === null) {
|
// no, see above
|
||||||
core.setFailed(`Invalid reference ${ref} is not release/<version>.`)
|
//const rel = await github.repos.getReleaseByTag({ ... })
|
||||||
return
|
const rels = await github.repos.listReleases({
|
||||||
}
|
owner: context.repo.owner,
|
||||||
var rel = await hz.getReleaseByTag(tag)
|
repo: context.repo.repo
|
||||||
|
})
|
||||||
|
for (const r of rels.data) {
|
||||||
|
if (r.tag_name === tag) {
|
||||||
|
rel = r
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
await github.repos.updateRelease({
|
await github.repos.updateRelease({
|
||||||
owner: context.repo.owner,
|
owner: context.repo.owner,
|
||||||
repo: context.repo.repo,
|
repo: context.repo.repo,
|
||||||
|
|||||||
Reference in New Issue
Block a user