Disable deploy to sonatype step (#468)
Disable deploy to nexus until completed conversion to Java due to missing javadoc jars with scala modules
This commit is contained in:
parent
76c17297f0
commit
63db53fb6f
1 changed files with 22 additions and 21 deletions
43
.github/workflows/sonatype-deploy.yml
vendored
43
.github/workflows/sonatype-deploy.yml
vendored
|
@ -17,27 +17,28 @@ jobs:
|
||||||
java-version: 8
|
java-version: 8
|
||||||
- name: Build with Maven
|
- name: Build with Maven
|
||||||
run: mvn -B install
|
run: mvn -B install
|
||||||
- name: Nexus Repo Publish
|
# Disable deploy to nexus until completed conversion to Java due to missing javadoc jars with scala modules
|
||||||
run: |
|
# - name: Nexus Repo Publish
|
||||||
gpg --quiet \
|
# run: |
|
||||||
--batch \
|
# gpg --quiet \
|
||||||
--yes \
|
# --batch \
|
||||||
--decrypt \
|
# --yes \
|
||||||
--passphrase="${{ secrets.GPG_PASSPHRASE }}" \
|
# --decrypt \
|
||||||
--output codesigning.asc \
|
# --passphrase="${{ secrets.GPG_PASSPHRASE }}" \
|
||||||
.github/codesigning.asc.gpg
|
# --output codesigning.asc \
|
||||||
gpg --batch \
|
# .github/codesigning.asc.gpg
|
||||||
--fast-import codesigning.asc
|
# gpg --batch \
|
||||||
mvn --settings .github/settings.xml \
|
# --fast-import codesigning.asc
|
||||||
-Dskip-Tests=true \
|
# mvn --settings .github/settings.xml \
|
||||||
-P release \
|
# -Dskip-Tests=true \
|
||||||
-B \
|
# -P release \
|
||||||
deploy
|
# -B \
|
||||||
env:
|
# deploy
|
||||||
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
|
# env:
|
||||||
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
|
# NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
|
||||||
GPG_KEYNAME: ${{ secrets.GPG_KEYNAME }}
|
# NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
|
||||||
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
# GPG_KEYNAME: ${{ secrets.GPG_KEYNAME }}
|
||||||
|
# GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
|
||||||
- uses: "marvinpinto/action-automatic-releases@latest"
|
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||||
with:
|
with:
|
||||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
|
Loading…
Reference in a new issue