Support Audit Log change key for timeouts #16
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
# Publishes the project to a Maven repository on every push by calling the gradle publish command. | |
# If the current version is a not a snapshot version ("-SNAPSHOT" suffix), it will publish to | |
# Maven Central. | |
name: Publish | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
publish: | |
name: Publish Repository | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- uses: gradle/gradle-build-action@v2 | |
- name: Publish | |
run: ./gradlew test publish | |
env: | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | |
SIGNING_KEY: ${{ secrets.SIGNING_KEY }} | |
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }} |