v4.0.0-RC1 for Grails 4.1.3 #7
Workflow file for this run
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
name: Release | |
on: | |
release: | |
types: [ published ] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
env: | |
GIT_USER_NAME: ${{ secrets.GIT_USER_NAME }} | |
GIT_USER_EMAIL: ${{ secrets.GIT_USER_EMAIL }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 8 | |
distribution: temurin | |
- uses: dhkatz/get-version-action@v3.0.0 | |
id: get_version | |
- uses: micronaut-projects/github-actions/pre-release@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish to Sonatype OSSRH | |
env: | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }} | |
SECRING_FILE: ${{ secrets.SECRING_FILE }} | |
SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} | |
SIGNING_PASSPHRASE: ${{ secrets.SIGNING_PASSPHRASE }} | |
SIGNING_FILE: ${{ github.workspace }}/secring.pgp | |
RELEASE_VERSION: ${{ steps.get_version.outputs.version-without-v }} | |
run: | | |
echo "${SECRING_FILE}" | base64 -d > "${SIGNING_FILE}" | |
echo "Publishing Artifacts for $RELEASE_VERSION" | |
(set -x; ./gradlew -Pversion="${RELEASE_VERSION}" publishToSonatype closeAndReleaseSonatypeStagingRepository --no-daemon) | |
rm "${SIGNING_FILE}" | |
- name: Bump patch version by one for next SNAPSHOT | |
uses: dhkatz/get-version-action@v3.0.0 | |
id: patch_version | |
with: | |
incrementLevel: patch | |
source: tags | |
- name: Set version in gradle.properties | |
env: | |
NEXT_VERSION: ${{ steps.patch_version.outputs.nextVersion }} | |
run: | | |
echo "Preparing next snapshot" | |
./gradlew snapshotVersion -Pversion="${NEXT_VERSION}" | |
- name: Commit & Push changes | |
uses: actions-js/push@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
author_name: ${{ secrets.GIT_USER_NAME }} | |
author_email: $${ secrets.GIT_USER_EMAIL }} | |
message: 'Set project version to next SNAPSHOT' | |
- name: Export Gradle Properties | |
uses: micronaut-projects/github-actions/export-gradle-properties@master | |
- name: Build documentation | |
id: asciidoctor | |
uses: gradle/gradle-build-action@v2 | |
env: | |
RELEASE_VERSION: ${{ steps.get_version.outputs.version-without-v }} | |
with: | |
arguments: -Pversion="${RELEASE_VERSION}" asciidoctor | |
- name: Export Gradle Properties | |
uses: micronaut-projects/github-actions/export-gradle-properties@master | |
- name: Publish to Github Pages | |
if: success() | |
uses: micronaut-projects/github-pages-deploy-action@master | |
env: | |
BETA: ${{ steps.get_version.outputs.isPrerelase }} | |
TARGET_REPOSITORY: ${{ github.repository }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: build/asciidoc | |
DOC_FOLDER: latest | |
COMMIT_EMAIL: ${{ secrets.GIT_USER_EMAIL }} | |
COMMIT_NAME: ${{ secrets.GIT_USER_NAME }} | |
VERSION: ${{ steps.get_version.outputs.version-without-v }} | |
- name: Run post-release | |
if: success() | |
uses: micronaut-projects/github-actions/post-release@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |