Maven Build #486
Workflow file for this run
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
| # Example: Copy this to your repo as .github/workflows/maven.yml | |
| # Configuration is read from .github/project.yml - no inputs needed! | |
| name: Maven Build | |
| on: | |
| # Required so the 'build / conclusion' status check runs on the merge-queue | |
| # branch; without it, queued PRs stay CLEAN but never merge (queue times out). | |
| merge_group: | |
| push: | |
| branches: [main, "feature/*", "fix/*", "chore/*", "release/*", "dependabot/**"] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| actions: read # the conclusion job verifies a covering run exists | |
| jobs: | |
| build: | |
| uses: cuioss/cuioss-organization/.github/workflows/reusable-maven-build.yml@f3b0586c485fa1f4ea8e004bd56f27f0a7d280df # v0.23.0 | |
| secrets: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| OSS_SONATYPE_USERNAME: ${{ secrets.OSS_SONATYPE_USERNAME }} | |
| OSS_SONATYPE_PASSWORD: ${{ secrets.OSS_SONATYPE_PASSWORD }} | |
| GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
| GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} |