update to maven 3.8.6 #269
This file contains hidden or 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 | |
| concurrency: ${{ github.workflow }} | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Maven Deploy with Site | |
| uses: wcm-io-devops/github-action-maven-deploy-site@v1 | |
| with: | |
| java-version: 21 | |
| maven-executable: ./mvnw | |
| sonatype-username: ${{ secrets.SONATYPE_USERNAME }} | |
| sonatype-password: ${{ secrets.SONATYPE_PASSWORD }} | |
| github-site-site-deploy-email: ${{ secrets.GH_SITE_DEPLOY_EMAIL }} | |
| github-site-site-deploy-name: ${{ secrets.GH_SITE_DEPLOY_NAME }} | |
| github-site-site-deploy-username: ${{ secrets.GH_SITE_DEPLOY_USERNAME }} | |
| github-site-site-deploy-password: ${{ secrets.GH_SITE_DEPLOY_PAT }} |