Skip to content

v0.6.3

v0.6.3 #14

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle
name: Gradle Publish
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'corretto'
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file
- uses: gradle/gradle-build-action@v3
id: setup-gradle
with:
gradle-version: current
- name: Build with Gradle
run: gradle build -i -s
- name: Publish to GitHub Packages & Open Source Project Repository Hosting
uses: gradle/gradle-build-action@v3
with:
arguments: publish -Pversion=${{ github.event.release.tag_name }} -i -s
env:
USERNAME: ${{ github.actor }}
TOKEN: ${{ secrets.GITHUB_TOKEN }}
GPG_SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
GPG_SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
OSSRH_TOKEN: ${{ secrets.OSSRH_TOKEN }}
OSSRH_USER: ${{ secrets.OSSRH_USER }}
GPR_USERNAME: ${{ github.repository_owner }}
GPR_TOKEN: ${{ secrets.GITHUB_TOKEN }}