You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
|
|
|
|
name: Deploy
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
jobs:
|
|
|
|
MAVEN_UPLOAD:
|
|
|
|
name: Maven Upload
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
|
|
|
|
SIGNING_PASSWORD: ${{ secrets.SIGNING_PASSWORD }}
|
|
|
|
SONATYPE_USER: ${{ secrets.SONATYPE_USER }}
|
|
|
|
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-java@v2
|
|
|
|
with:
|
|
|
|
java-version: 11
|
|
|
|
distribution: temurin
|
|
|
|
cache: gradle
|
|
|
|
- name: Perform maven upload
|
|
|
|
run: ./gradlew publishToSonatype
|