debug publish #53
Workflow file for this run
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
name: ci | |
on: [push] | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
id: setup-jre | |
uses: actions/setup-java@v1 | |
with: | |
java-version: "11" | |
architecture: x64 | |
- name: Compile | |
run: ./gradlew compileJava | |
test: | |
needs: [ compile ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
id: setup-jre | |
uses: actions/setup-java@v1 | |
with: | |
java-version: "11" | |
architecture: x64 | |
- name: Test | |
run: ./gradlew test | |
publish: | |
needs: [ compile, test ] | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Set up Java | |
id: setup-jre | |
uses: actions/setup-java@v1 | |
with: | |
java-version: "11" | |
architecture: x64 | |
- name: Publish to maven | |
run: | | |
echo "MAVEN_USERNAME exists: ${MAVEN_USERNAME:0:3}..." | |
echo "MAVEN_PASSWORD exists: ${MAVEN_PASSWORD:0:3}..." | |
echo "MAVEN_PUBLISH_REGISTRY_URL: $MAVEN_PUBLISH_REGISTRY_URL" | |
echo "MAVEN_SIGNATURE_KID exists: ${MAVEN_SIGNATURE_KID:0:4}..." | |
echo "MAVEN_SIGNATURE_SECRET_KEY exists: ${MAVEN_SIGNATURE_SECRET_KEY:+YES}" | |
echo "MAVEN_SIGNATURE_PASSWORD exists: ${MAVEN_SIGNATURE_PASSWORD:+YES}" | |
./gradlew sonatypeCentralUpload --info --debug --scan --stacktrace | |
env: | |
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | |
MAVEN_PUBLISH_REGISTRY_URL: "https://oss.sonatype.org/service/local/staging/deploy/maven2/" | |
MAVEN_SIGNATURE_KID: ${{ secrets.MAVEN_SIGNATURE_KID }} | |
MAVEN_SIGNATURE_SECRET_KEY: ${{ secrets.MAVEN_SIGNATURE_SECRET_KEY }} | |
MAVEN_SIGNATURE_PASSWORD: ${{ secrets.MAVEN_SIGNATURE_PASSWORD }} |