2022-02-17 04:43:04 +00:00
|
|
|
name: Draft new release
|
2020-06-18 06:31:18 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
milestone:
|
|
|
|
types: [closed]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
draft-new-release:
|
2022-02-17 04:43:04 +00:00
|
|
|
name: Draft a new release
|
2020-06-18 06:31:18 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Extract version from milestone
|
2022-02-17 04:43:04 +00:00
|
|
|
shell: bash
|
2020-06-18 06:31:18 +00:00
|
|
|
run: |
|
|
|
|
VERSION="${{ github.event.milestone.title }}"
|
2021-01-20 14:57:04 +00:00
|
|
|
RELEASE_VERSION="${VERSION/v/}"
|
|
|
|
# Transforms 1.13.2 to 1.13 so that we can re-use the same
|
|
|
|
# branch for patch releases.
|
|
|
|
BRANCH_VERSION="${RELEASE_VERSION:$i:-2}"
|
|
|
|
if [[ "${RELEASE_VERSION: -1}" == "0" ]]; then
|
|
|
|
CHECKOUT_REF="develop"
|
|
|
|
else
|
|
|
|
CHECKOUT_REF="release-${BRANCH_VERSION}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Export variables separately so the scripting above is more legible,
|
|
|
|
# and we can actually use them within this block. Changes to $GITHUB_ENV
|
|
|
|
# only affect the next step, not the current one.
|
|
|
|
echo "RELEASE_VERSION=${RELEASE_VERSION}" >> $GITHUB_ENV
|
|
|
|
echo "CHECKOUT_REF=${CHECKOUT_REF}" >> $GITHUB_ENV
|
|
|
|
echo "BRANCH_VERSION=${BRANCH_VERSION}" >> $GITHUB_ENV
|
|
|
|
echo "PR_BASE=release-${BRANCH_VERSION}" >> $GITHUB_ENV
|
|
|
|
echo "PR_HEAD=release-prep" >> $GITHUB_ENV
|
|
|
|
|
2022-10-04 12:33:41 +00:00
|
|
|
- uses: actions/checkout@v3.1.0
|
2021-01-20 14:57:04 +00:00
|
|
|
with:
|
|
|
|
ref: ${{ env.CHECKOUT_REF }}
|
2020-06-18 06:31:18 +00:00
|
|
|
|
2021-12-06 18:34:30 +00:00
|
|
|
- name: Set up JDK
|
2022-09-26 14:57:27 +00:00
|
|
|
uses: actions/setup-java@v3.5.1
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2022-09-05 08:21:05 +00:00
|
|
|
java-version: 18
|
2021-12-06 18:34:30 +00:00
|
|
|
|
2020-06-18 06:31:18 +00:00
|
|
|
- name: Update changelog
|
2021-12-06 18:19:29 +00:00
|
|
|
uses: thomaseizinger/keep-a-changelog-new-release@1.3.0
|
2020-06-18 06:31:18 +00:00
|
|
|
with:
|
2021-01-20 14:57:04 +00:00
|
|
|
version: ${{ github.event.milestone.title }}
|
2020-06-18 06:31:18 +00:00
|
|
|
|
2022-08-30 16:38:46 +00:00
|
|
|
- name: Setup Gradle caching
|
2022-09-29 15:36:35 +00:00
|
|
|
uses: gradle/gradle-build-action@v2.3.2
|
2022-08-30 16:38:46 +00:00
|
|
|
with:
|
|
|
|
gradle-home-cache-cleanup: true
|
|
|
|
|
2020-10-10 06:59:13 +00:00
|
|
|
- name: Initialize git config and commit changes
|
2022-02-17 04:43:04 +00:00
|
|
|
shell: bash
|
2020-06-18 06:31:18 +00:00
|
|
|
run: |
|
2021-01-20 14:57:04 +00:00
|
|
|
# Configure name and email for Actions user
|
2020-06-18 06:31:18 +00:00
|
|
|
git config user.name "GitHub Actions"
|
|
|
|
git config user.email noreply@github.com
|
|
|
|
|
2021-01-20 14:57:04 +00:00
|
|
|
# It is necessary to create the $PR_BASE branch if it doesn't
|
|
|
|
# already exist because we want to start a PR against it.
|
|
|
|
if [[ "${CHECKOUT_REF}" == "develop" ]]; then
|
|
|
|
git branch -c develop "${PR_BASE}"
|
|
|
|
git push origin "${PR_BASE}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Stage and commit changes to the changelog
|
|
|
|
git add CHANGELOG.md
|
|
|
|
git commit -m "CHANGELOG: bump for ${{ github.event.milestone.title }}"
|
|
|
|
|
|
|
|
# Increment the version as necessary. If we checked out develop it means
|
|
|
|
# that the version number is already correct, and we only need to drop the
|
|
|
|
# -SNAPSHOT suffix.
|
|
|
|
if [[ "${CHECKOUT_REF}" == "develop" ]]; then
|
2022-06-10 17:57:56 +00:00
|
|
|
./gradlew --no-daemon clearPreRelease
|
2021-01-20 14:57:04 +00:00
|
|
|
else
|
2022-06-10 17:57:56 +00:00
|
|
|
./gradlew --no-daemon bumpPatch
|
2021-01-20 14:57:04 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Commit changes to the versioning
|
|
|
|
git add **/version.properties
|
|
|
|
git commit -m "build: bump version"
|
|
|
|
|
2020-09-02 12:48:18 +00:00
|
|
|
- name: Create Pull Request
|
2022-10-18 04:35:52 +00:00
|
|
|
uses: peter-evans/create-pull-request@v4.2.0
|
2020-06-18 06:31:18 +00:00
|
|
|
with:
|
2020-10-23 09:33:45 +00:00
|
|
|
author: GitHub Actions <noreply@github.com>
|
2021-01-20 14:57:04 +00:00
|
|
|
body: This is an automated pull request to bump the changelog for the ${{ github.event.milestone.title }} release.
|
|
|
|
base: ${{ env.PR_BASE }}
|
|
|
|
branch: ${{ env.PR_HEAD }}
|
2020-10-23 09:33:45 +00:00
|
|
|
title: Release v${{ env.RELEASE_VERSION }}
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|