Release #13
Workflow file for this run
This file contains hidden or 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: 'grails-build@users.noreply.github.com' | ||
steps: | ||
- name: "📥 Checkout repository" | ||
uses: actions/checkout@v4 | ||
- name: "☕️ Setup JDK" | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 17 | ||
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: grails/github-actions/pre-release@main | ||
- 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: | ||
NEXUS_PUBLISH_USERNAME: ${{ secrets.NEXUS_PUBLISH_USERNAME }} | ||
NEXUS_PUBLISH_PASSWORD: ${{ secrets.NEXUS_PUBLISH_PASSWORD }} | ||
NEXUS_PUBLISH_URL: ${{ secrets.NEXUS_PUBLISH_RELEASE_URL }} | ||
NEXUS_PUBLISH_STAGING_PROFILE_ID: ${{ secrets.NEXUS_PUBLISH_STAGING_PROFILE_ID }} | ||
SIGNING_KEY: ${{ secrets.SIGNING_KEY }} | ||
SIGNING_PASSPHRASE: ${{ secrets.SIGNING_PASSPHRASE }} | ||
SECRING_FILE: ${{ secrets.SECRING_FILE }} | ||
GITHUB_MAVEN_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | ||
run: > | ||
./gradlew | ||
-Psigning.secretKeyRingFile=${{ github.workspace }}/secring.gpg | ||
publishToSonatype | ||
closeAndReleaseSonatypeStagingRepository | ||
- name: "📖 Generate Documentation" | ||
id: docs | ||
if: steps.publish.outcome == 'success' | ||
with: | ||
GITHUB_MAVEN_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | ||
run: ./gradlew groovydoc | ||
Check failure on line 53 in .github/workflows/release.yml
|
||
- name: "📝 Export Gradle Properties" | ||
uses: grails/github-actions/export-gradle-properties@main | ||
- name: "📤 Publish to Github Pages" | ||
if: steps.docs.outcome == 'success' | ||
uses: grails/github-pages-deploy-action@main | ||
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 }} |