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:
|
2023-02-26 02:29:04 +01:00
|
|
|
manually_promote_release:
|
2023-02-25 19:10:53 +01:00
|
|
|
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 }}
|
2023-08-15 17:28:39 +02:00
|
|
|
|
2023-08-20 16:16:20 +02:00
|
|
|
- name: Get release info
|
|
|
|
id: release-info
|
2023-08-15 17:28:39 +02:00
|
|
|
uses: cardinalby/git-get-release-action@1.2.4
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
tag: ${{ steps.release.outputs.tag_name }}
|
|
|
|
|
2023-08-20 16:16:20 +02:00
|
|
|
- name: Download release artifact
|
|
|
|
id: release-artifact
|
|
|
|
uses: dsaltares/fetch-gh-release-asset@master
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
version: tags/${{ steps.release.outputs.tag_name }}
|
|
|
|
file: multiverse-core-${{ github.event.inputs.version }}.jar
|
|
|
|
|
|
|
|
- name: Parse release type
|
|
|
|
run: |
|
|
|
|
if [[ "${{ steps.release-info.outputs.prerelease }}" == "true" ]]; then
|
|
|
|
echo "Replacing prerelease version scheme with SNAPSHOT"
|
|
|
|
echo "RELEASE_TYPE=beta" >> $GITHUB_ENV
|
|
|
|
else
|
|
|
|
echo "Using release version scheme"
|
|
|
|
echo "RELEASE_TYPE=release" >> $GITHUB_ENV
|
|
|
|
fi
|
|
|
|
|
|
|
|
- name: Upload to modrinth.com
|
2023-08-15 17:28:39 +02:00
|
|
|
uses: gradle/gradle-build-action@v2
|
|
|
|
with:
|
|
|
|
arguments: build modrinth
|
|
|
|
env:
|
|
|
|
GITHUB_VERSION: ${{ env.VERSION }}
|
|
|
|
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}
|
2023-08-20 16:16:20 +02:00
|
|
|
CHANGELOG: ${{ steps.release-artifact.outputs.body }}
|
|
|
|
VERSION_NUMBER: ${{ steps.release.outputs.tag_name }}
|
|
|
|
VERSION_TYPE: ${{ env.RELEASE_TYPE }}
|
|
|
|
|
|
|
|
- name: Upload to dev.bukkit.org
|
|
|
|
uses: benwoo1110/dbo-upload-action@v0.1.0
|
|
|
|
with:
|
|
|
|
api_token: ${{ secrets.DBO_UPLOAD_API_TOKEN }}
|
|
|
|
project_id: 30765
|
|
|
|
changelog: ${{ steps.release-artifact.outputs.body }}
|
|
|
|
changelog_type: markdown
|
|
|
|
display_name: ${{ steps.release-artifact.outputs.version }}
|
|
|
|
game_versions: 1.13, 1.14, 1.15, 1.16, 1.17, 1.18, 1.18.1, 1.18.2, 1.19, 1.19.1, 1.19.2, 1.19.3, 1.19.4, 1.20, 1.20.1
|
|
|
|
release_type: ${{ env.RELEASE_TYPE }}
|
|
|
|
project_relations: >
|
|
|
|
[
|
|
|
|
{"slug": "multiverse-portals", "type": "optionalDependency"},
|
|
|
|
{"slug": "multiverse-netherportals", "type": "optionalDependency"},
|
|
|
|
{"slug": "multiverse-signportals", "type": "optionalDependency"},
|
|
|
|
{"slug": "multiverse-inventories", "type": "optionalDependency"}
|
|
|
|
]
|
|
|
|
file_path: ${{ github.workspace }}/subdir/multiverse-core-${{ steps.release-artifact.outputs.version }}.jar
|