-
Notifications
You must be signed in to change notification settings - Fork 4
40 lines (36 loc) · 1.16 KB
/
module-auto-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Altis Module Auto Release On Manual Tags
on:
push:
tags:
- '*.0.0'
- '*.0.0-beta*'
- '*.0.0-rc*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/github-script@v5
with:
script: |
const tag = '${{ github.ref }}'.replace( 'refs/tags/', '' );
const [
_,
baseTag,
majorVersion,
stability,
preReleaseVersion,
] = tag.match( /^((\d+)\.\d+\.\d+)(?:-(beta|rc)\.?(\d+)?)?/ )
let nameSuffix = '';
if ( stability ) {
nameSuffix = stability === 'beta' ? 'Beta' : 'Release Candidate';
nameSuffix = ' ' + nameSuffix + ' ' + preReleaseVersion;
}
// Create new release from tag.
await github.request( `POST /repos/${{ github.repository }}/releases`, {
name: `${ baseTag }${ nameSuffix }`,
tag_name: tag,
target_commitish: `v${ majorVersion }-branch`,
generate_release_notes: true,
prerelease: !! stability,
} );