2023-02-25 19:10:53 +01:00
|
|
|
name: Manually promote last prerelease to release
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
version:
|
|
|
|
description: 'Version to promote'
|
|
|
|
required: true
|
2023-02-25 19:28:36 +01:00
|
|
|
version-bump:
|
|
|
|
description: 'Version bump to apply - should usually match the version bump used for the prerelease since last release'
|
|
|
|
required: true
|
|
|
|
type: choice
|
|
|
|
options:
|
2023-02-25 19:31:49 +01:00
|
|
|
- 'patch'
|
2023-02-25 19:28:36 +01:00
|
|
|
- 'minor'
|
|
|
|
- 'major'
|
2023-02-25 19:10:53 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
release_on_push:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Verify input version is prerelease
|
|
|
|
run: |
|
|
|
|
if [[ "${{ github.event.inputs.version }}" != *"pre"* ]]; then
|
|
|
|
echo "Version must be a prerelease"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Get release info
|
|
|
|
id: get-release
|
|
|
|
uses: cardinalby/git-get-release-action@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
|
|
with:
|
|
|
|
tag: ${{ github.event.inputs.version }}
|
|
|
|
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
ref: ${{ steps.get-release.outputs.tag_name }}
|
|
|
|
|
|
|
|
- uses: actions/setup-java@v3
|
|
|
|
with:
|
|
|
|
java-version: '11'
|
|
|
|
distribution: 'adopt'
|
|
|
|
cache: gradle
|
|
|
|
|
|
|
|
- name: Validate Gradle wrapper
|
|
|
|
uses: gradle/wrapper-validation-action@v1
|
|
|
|
|
|
|
|
- name: Remove prerelease tag
|
|
|
|
run: |
|
|
|
|
echo "Removing prerelease tag from version"
|
|
|
|
echo "VERSION=$(echo ${{ steps.get-release.outputs.tag_name }} | sed -E 's/-pre.*//')" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
uses: gradle/gradle-build-action@v2
|
|
|
|
with:
|
2023-02-25 19:24:24 +01:00
|
|
|
arguments: clean build -x test -x checkstyleMain -x checkstyleTest
|
2023-02-25 19:10:53 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
GITHUB_VERSION: ${{ env.VERSION }}
|
|
|
|
|
|
|
|
- name: Create release
|
|
|
|
id: release
|
2023-02-26 01:39:14 +01:00
|
|
|
uses: Multiverse/release-on-push-action@skip_prs
|
2023-02-25 19:10:53 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
2023-02-25 19:32:08 +01:00
|
|
|
bump_version_scheme: ${{ github.event.inputs.version-bump }}
|
2023-02-25 19:10:53 +01:00
|
|
|
tag_prefix: ''
|
|
|
|
release_name: "<RELEASE_VERSION>"
|
|
|
|
use_github_release_notes: true
|
2023-02-25 20:02:01 +01:00
|
|
|
ref: ${{ steps.get-release.outputs.target_commitish }}
|
2023-02-26 01:39:14 +01:00
|
|
|
skip_prs: true
|
2023-02-25 19:10:53 +01:00
|
|
|
|
2023-02-25 19:34:24 +01:00
|
|
|
- name: Publish package
|
|
|
|
uses: gradle/gradle-build-action@v2
|
|
|
|
with:
|
|
|
|
arguments: publish
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-02-25 19:39:59 +01:00
|
|
|
GITHUB_VERSION: ${{ env.VERSION }}
|
2023-02-25 19:10:53 +01:00
|
|
|
|
2023-02-25 19:34:24 +01:00
|
|
|
- name: Upload release artifact
|
|
|
|
uses: svenstaro/upload-release-action@v2
|
|
|
|
with:
|
|
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
file: build/libs/multiverse-core-${{ env.VERSION }}.jar
|
|
|
|
asset_name: multiverse-core-${{ steps.release.outputs.tag_name }}.jar
|
|
|
|
tag: ${{ steps.release.outputs.tag_name }}
|