update dependencies #20
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
# Deploy snapshots to Sonatype OSS repository and deploy site to GitHub Pages | |
name: Deploy | |
on: | |
push: | |
branches: | |
- develop | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Configure GIT | |
run: | | |
git config --global user.email "${{ secrets.GH_SITE_DEPLOY_EMAIL }}" | |
git config --global user.name "${{ secrets.GH_SITE_DEPLOY_NAME }}" | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 11 | |
cache: maven | |
- name: Build, verify, deploy | |
env: | |
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }} | |
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }} | |
run: mvn -s ./.maven-settings.xml -Pcontinuous-integration -B -U clean deploy |