Issue/395 New D-Trust Server Root CAs #157
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: DSF 2.x Java CI Publish with Maven | |
| on: | |
| pull_request: | |
| types: closed | |
| branches: develop_2 | |
| jobs: | |
| publish: | |
| # Only run if pull requests are merged, omit running if pull requests are closed without merging | |
| if: github.event.pull_request.merged | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 25 | |
| cache: 'maven' | |
| check-latest: true | |
| - name: Publish with Maven | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: mvn --batch-mode --fail-at-end -DforkCount=2 clean deploy |