Skip to content

Skip building the sample app on CI #1

Skip building the sample app on CI

Skip building the sample app on CI #1

Workflow file for this run

name: Publish
on:
push:
tags: '*'
jobs:
publish:
runs-on: ubuntu-latest
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.SIGNING_KEY_ID }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 17
- name: Publish plugin to Sonatype
run: ./gradlew publishToMavenCentral -PwithoutSample --no-configuration-cache --no-daemon --stacktrace