updated the mvn and publish #47
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: Deploy to GitHub Packages | |
on: | |
push: | |
branches: | |
- testing | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: temurin | |
- name: Publish Package - lib-hl7v2-nist | |
run: mvn -B package | |
- name: Publish package to github Repo | |
run: mvn clean -X deploy --settings .github/workflows/mvn-settings.xml | |
env: | |
LIB_GITHUB_ACTOR: '${{ secrets.LIB_GITHUB_ACTOR }}' | |
LIB_GITHUB_TOKEN: '${{ secrets.LIB_GITHUB_TOKEN }}' | |
- name: Publish package to Maven Central | |
run: mvn clean -X deploy --settings .github/workflows/mvn-settings.xml | |
env: | |
SONATYPE_USERNAME: '${{ secrets.SONATYPE_USERNAME }}' | |
SONATYPE_PASSWORD: '${{ secrets.SONATYPE_PASSWORD }}' |