Skip to content

Commit

Permalink
Merge branch 'main' into maven_deploy_11
Browse files Browse the repository at this point in the history
  • Loading branch information
nkysg authored Dec 23, 2023
2 parents 9c3b155 + c0afaa7 commit 7a3149f
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .github/workflows/maven_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ on:
jobs:
deploy:
name: Deploy Snapshot
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: 'main'
fetch-depth: 0

- name: Install gpg secret key
run: |
mkdir -p ~/.gnupg/private-keys-v1.d
Expand All @@ -26,16 +27,11 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 11
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_CENTRAL_TOKEN

- name: Deploy to Maven Central
run: |
cat ~/.m2/settings.xml
echo $MAVEN_USERNAME
echo $MAVEN_CENTRAL_TOKEN
mvn clean deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_CENTRAL_TOKEN: ${{ secrets.OSSRH_TOKEN }}
- name: Release Maven package
uses: samuelmeuli/action-maven-publish@v1
with:
gpg_private_key: ${{ secrets.OSSRH_GPG_SECRET_KEY }}
gpg_passphrase: ${{ secrets.OSSRH_GPG_PASSPHRASE }}
nexus_username: ${{ secrets.OSSRH_USERNAME }}
nexus_password: ${{ secrets.OSSRH_TOKEN }}

0 comments on commit 7a3149f

Please sign in to comment.