Skip to content

Merge pull request #4 from theJawnnybot/fix/maven-central-secret-names #3

Merge pull request #4 from theJawnnybot/fix/maven-central-secret-names

Merge pull request #4 from theJawnnybot/fix/maven-central-secret-names #3

Workflow file for this run

name: Publish Release
on:
push:
tags:
- '*'
env:
RELEASE_SIGNING_ENABLED: true
jobs:
publish:
runs-on: ubuntu-latest
if: github.repository == 'Commit451/okyo'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install JDK
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: '17'
cache: gradle
- name: Set version
run: sed -i "s/VERSION_NAME=1.0.0/VERSION_NAME=$GITHUB_REF_NAME/" gradle.properties
- name: Release to Maven Central
run: ./gradlew publishAndReleaseToMavenCentral --no-configuration-cache
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_PRIVATE_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}