Skip to content

Merge pull request #26 from messente/travis #16

Merge pull request #26 from messente/travis

Merge pull request #26 from messente/travis #16

Workflow file for this run

name: Publish package to the Maven Central Repository
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
- name: Publish Artifacts
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: $
ORG_GRADLE_PROJECT_mavenCentralPassword: $
ORG_GRADLE_PROJECT_signingInMemoryKey: $
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: $
run: chmod +x ./gradlew && ./gradlew publishAllPublicationsToMavenCentralRepository --no-configuration-cache --no-daemon
on:
push:
tags:
- '*'