Merge remote-tracking branch 'origin/candidate-9.2.x' into candidate-… #96
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: Publish snapshot package to the Maven Central Repository | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'candidate-*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: tracing | |
run: | | |
echo "Ref = ${{ github.ref }}" | |
echo "Action = ${{ github.action }}" | |
echo "Event = ${{ github.event_name }}" | |
echo "Actor = ${{ github.actor }}" | |
echo "SHA = ${{ github.sha }}" | |
- uses: actions/checkout@v3 | |
- name: Set up Maven Central Repository | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
server-id: ossrh | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_PASSWORD | |
# Build & Publish steps are separated to isolate secrets from retry action code | |
- name: Build package | |
if: (!contains(github.ref_name, '-release')) | |
uses: nick-fields/retry@v2 | |
with: | |
timeout_minutes: 15 | |
max_attempts: 3 | |
retry_wait_seconds: 600 | |
command: mvn --batch-mode package -DskipTests -DskipITs --file DataAccess/pom.xml | |
- name: Publish package | |
if: (!contains(github.ref_name, '-release')) | |
run: mvn --batch-mode deploy -DskipTests -DskipITs --file DataAccess/pom.xml | |
env: | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USER_NAME }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASS }} |