Grace Release #2
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] | |
permissions: {} | |
jobs: | |
release: | |
permissions: | |
contents: write # to create release | |
issues: write # to modify milestones | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: ['8'] | |
env: | |
GIT_USER_NAME: rainboyan | |
GIT_USER_EMAIL: [email protected] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: gradle/wrapper-validation-action@v1 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: ${{ matrix.java }} | |
- name: Extract Target Branch | |
id: extract_branch | |
run: | | |
echo "Determining Target Branch" | |
TARGET_BRANCH=`cat $GITHUB_EVENT_PATH | jq '.release.target_commitish' | sed -e 's/^"\(.*\)"$/\1/g'` | |
echo $TARGET_BRANCH | |
echo ::set-output name=value::${TARGET_BRANCH} | |
- name: Set the current release version | |
id: release_version | |
run: echo "release_version=${GITHUB_REF:11}" >> $GITHUB_OUTPUT | |
- name: Run pre-release | |
uses: ./.github/actions/pre-release | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Assemble | |
id: assemble | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: assemble | |
env: | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} | |
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} | |
- name: Generate secring file | |
env: | |
SECRING_FILE: ${{ secrets.SECRING_FILE }} | |
run: echo $SECRING_FILE | base64 -d > ${{ github.workspace }}/secring.gpg | |
- name: Publish to Sonatype OSSRH | |
id: publish | |
if: steps.assemble.outcome == 'success' | |
uses: gradle/gradle-build-action@v2 | |
env: | |
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER }} | |
GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY: ${{ secrets.GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY }} | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
SONATYPE_NEXUS_URL: ${{ secrets.SONATYPE_NEXUS_URL }} | |
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }} | |
SIGNING_KEY: ${{ secrets.SIGNING_KEY }} | |
SIGNING_PASSPHRASE: ${{ secrets.SIGNING_PASSPHRASE }} | |
SECRING_FILE: ${{ secrets.SECRING_FILE }} | |
with: | |
arguments: -Psigning.secretKeyRingFile=${{ github.workspace }}/secring.gpg publishToSonatype closeAndReleaseSonatypeStagingRepository | |
- name: Run post-release | |
if: steps.publish.outcome == 'success' | |
uses: ./.github/actions/post-release | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
env: | |
SNAPSHOT_SUFFIX: -SNAPSHOT | |
- name: Upload artifacts to the Github release | |
id: upload_artifact | |
if: steps.publish.outcome == 'success' | |
uses: Roang-zero1/github-upload-release-artifacts-action@master | |
with: | |
args: build/distributions/grace-${{ steps.release_version.outputs.release_version }}.zip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |