-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from humanmade/backport-39-to-v8-branch
[Backport v8-branch] Add module release actions
- Loading branch information
Showing
2 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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, | ||
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Altis Module Auto Tagging | ||
|
||
on: | ||
push: | ||
branches: | ||
- v*-branch* | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/[email protected] | ||
- run: npm install semver | ||
- uses: actions/github-script@v5 | ||
with: | ||
script: | | ||
const semver = require( 'semver' ); | ||
const [ owner, repo ] = '${{ github.repository }}'.split( '/' ); | ||
const [ | ||
ref, | ||
branch, | ||
branchVersion, | ||
isRC | ||
] = '${{ github.ref }}'.match( /^refs\/heads\/(v(\d+)-branch(-rc)?)/ ); | ||
const tags = await github.paginate( github.rest.git.listMatchingRefs, { | ||
owner, | ||
repo, | ||
ref: `tags/${ branchVersion }${ isRC ? '' : '.0' }.`, | ||
} ); | ||
// Start from lowest possible tag. | ||
const initialTag = isRC ? `${ branchVersion }.1.0-rc.1` : `${ branchVersion }.0.0-beta.1`; | ||
// Find the latest tag from results. | ||
const newTag = tags.reduce( ( carry, tag ) => { | ||
const cleanTag = semver.clean( tag.ref.replace( 'refs/tags/', '' ) ); | ||
let nextTag = ''; | ||
if ( semver.prerelease( cleanTag ) ) { | ||
nextTag = semver.inc( cleanTag, 'prerelease' ); | ||
} else { | ||
nextTag = semver.inc( cleanTag, 'patch' ); | ||
} | ||
return semver.gt( nextTag, carry ) ? nextTag : carry; | ||
}, initialTag ); | ||
const isPreRelease = semver.prerelease( newTag ); | ||
// Don't make new Pre-Release tags once we already have one. | ||
if ( isPreRelease && ! isRC && newTag !== initialTag ) { | ||
return; | ||
} | ||
const baseTag = `${ semver.major( newTag ) }.${ semver.minor( newTag ) }.${ semver.patch( newTag ) }`; | ||
let nameSuffix = ''; | ||
if ( isPreRelease ) { | ||
nameSuffix = isRC ? 'Preview Release' : isPreRelease.join( ' ' ); | ||
nameSuffix = ' ' + nameSuffix; | ||
} | ||
// Create new tag. | ||
await github.request( `POST /repos/${{ github.repository }}/releases`, { | ||
name: `${ baseTag }${ nameSuffix }`, | ||
tag_name: newTag, | ||
target_commitish: branch, | ||
generate_release_notes: true, | ||
prerelease: !! isPreRelease, | ||
} ); |