[gitflow-maven-plugin] Update for next development version 2026.6.269… #323
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 | |
| name: Deploy | |
| concurrency: ${{ github.workflow }} | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Maven Deploy | |
| uses: wcm-io-devops/github-action-maven-deploy@v1 | |
| with: | |
| java-version: 21 | |
| maven-executable: ./mvnw | |
| sonatype-username: ${{ secrets.SONATYPE_USERNAME }} | |
| sonatype-password: ${{ secrets.SONATYPE_PASSWORD }} |