4.1.1 #12
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: 'grails-build' | |
GIT_USER_EMAIL: '[email protected]' | |
steps: | |
- name: "📥 Checkout repository" | |
uses: actions/checkout@v4 | |
- name: "☕️ Setup JDK" | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 11 | |
distribution: liberica | |
- name: "🐘 Setup Gradle" | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
develocity-access-key: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
- name: "📝 Store the current release version" | |
id: release_version | |
run: echo "release_version=${GITHUB_REF:11}" >> $GITHUB_OUTPUT | |
- name: "⚙ Run pre-release" | |
uses: micronaut-projects/github-actions/pre-release@master | |
- name: "🔐 Generate key file for artifact signing" | |
env: | |
SECRING_FILE: ${{ secrets.SECRING_FILE }} | |
run: echo $SECRING_FILE | base64 -d > ${{ github.workspace }}/secring.gpg | |
- name: "📤 Publish artifacts to Sonatype" | |
id: publish | |
env: | |
SONATYPE_USERNAME: ${{ secrets.NEXUS_PUBLISH_USERNAME }} | |
SONATYPE_PASSWORD: ${{ secrets.NEXUS_PUBLISH_PASSWORD }} | |
SONATYPE_NEXUS_URL: ${{ secrets.SONATYPE_NEXUS_URL }} | |
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.NEXUS_PUBLISH_STAGING_PROFILE_ID }} | |
SIGNING_KEY: ${{ secrets.SIGNING_KEY }} | |
SIGNING_PASSPHRASE: ${{ secrets.SIGNING_PASSPHRASE }} | |
SECRING_FILE: ${{ secrets.SECRING_FILE }} | |
run: > | |
./gradlew | |
-Psigning.secretKeyRingFile=${{ github.workspace }}/secring.gpg | |
publishToSonatype | |
closeAndReleaseSonatypeStagingRepository | |
- name: "📖 Generate Documentation" | |
id: docs | |
if: steps.publish.outcome == 'success' | |
run: ./gradlew groovydoc | |
- name: "📝 Export Gradle Properties" | |
uses: micronaut-projects/github-actions/export-gradle-properties@master | |
- name: "📤 Publish to Github Pages" | |
if: steps.docs.outcome == 'success' | |
uses: micronaut-projects/github-pages-deploy-action@master | |
env: | |
BETA: ${{ contains(steps.release_version.outputs.release_version, 'M') || contains(steps.release_version.outputs.release_version, 'RC') }} | |
BRANCH: gh-pages | |
COMMIT_EMAIL: ${{ env.GIT_USER_EMAIL }} | |
COMMIT_NAME: ${{ env.GIT_USER_NAME }} | |
DOC_FOLDER: gh-pages | |
FOLDER: build/docs | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
VERSION: ${{ steps.release_version.outputs.release_version }} | |
- name: "⚙️ Run post-release" | |
if: success() | |
uses: micronaut-projects/github-actions/post-release@master | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |