From 63db53fb6fb15dd25e4c914162a817b6df7572a6 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sun, 21 Jun 2020 10:30:57 +0100 Subject: [PATCH] Disable deploy to sonatype step (#468) Disable deploy to nexus until completed conversion to Java due to missing javadoc jars with scala modules --- .github/workflows/sonatype-deploy.yml | 43 ++++++++++++++------------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/.github/workflows/sonatype-deploy.yml b/.github/workflows/sonatype-deploy.yml index 34a02f7..6c0ac47 100644 --- a/.github/workflows/sonatype-deploy.yml +++ b/.github/workflows/sonatype-deploy.yml @@ -17,27 +17,28 @@ jobs: java-version: 8 - name: Build with Maven run: mvn -B install - - name: Nexus Repo Publish - run: | - gpg --quiet \ - --batch \ - --yes \ - --decrypt \ - --passphrase="${{ secrets.GPG_PASSPHRASE }}" \ - --output codesigning.asc \ - .github/codesigning.asc.gpg - gpg --batch \ - --fast-import codesigning.asc - mvn --settings .github/settings.xml \ - -Dskip-Tests=true \ - -P release \ - -B \ - deploy - env: - NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }} - NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }} - GPG_KEYNAME: ${{ secrets.GPG_KEYNAME }} - GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} +# Disable deploy to nexus until completed conversion to Java due to missing javadoc jars with scala modules +# - name: Nexus Repo Publish +# run: | +# gpg --quiet \ +# --batch \ +# --yes \ +# --decrypt \ +# --passphrase="${{ secrets.GPG_PASSPHRASE }}" \ +# --output codesigning.asc \ +# .github/codesigning.asc.gpg +# gpg --batch \ +# --fast-import codesigning.asc +# mvn --settings .github/settings.xml \ +# -Dskip-Tests=true \ +# -P release \ +# -B \ +# deploy +# env: +# NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }} +# NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }} +# GPG_KEYNAME: ${{ secrets.GPG_KEYNAME }} +# GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}"