Merge pull request #56 from Jorgedavyd/jakarta-migration #79
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
| name: MAVEN DEPLOYMENT | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build_and_publish: | |
| runs-on: ubuntu-latest | |
| environment: oym | |
| permissions: | |
| contents: read | |
| packages: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK 11 for x64 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '11' | |
| distribution: 'temurin' | |
| architecture: x64 | |
| - name: Maven Deploy | |
| env: | |
| OYM_USERNAME: ${{ secrets.OYM_USERNAME }} | |
| OYM_PASSWORD: ${{ secrets.OYM_PASSWORD }} | |
| run: mvn deploy -s maven-settings.xml -DskipTests -P javadoc |