This repository was archived by the owner on Jul 7, 2025. It is now read-only.
chore(deps): Update dependency org.junit:junit-bom to v5.13.1 - autoclosed #456
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
| name: "build" | |
| on: | |
| push: | |
| branches: "**" | |
| tags-ignore: ["**"] | |
| pull_request: | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.event.number || github.ref }}" | |
| cancel-in-progress: true | |
| env: | |
| RUNTIME_VERSION: 11 | |
| jobs: | |
| build: | |
| # Only run on PRs if the source branch is on someone else's repo | |
| if: "${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }}" | |
| strategy: | |
| matrix: | |
| os: [ "ubuntu-latest", "windows-latest" ] | |
| runs-on: "${{ matrix.os }}" | |
| steps: | |
| - name: "checkout repository" | |
| uses: actions/checkout@v3 | |
| - name: "setup jdk ${{ env.RUNTIME_VERSION }}" | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: "temurin" | |
| java-version: "${{ env.RUNTIME_VERSION }}" | |
| - name: "run gradle build" | |
| uses: "gradle/gradle-build-action@v2" | |
| with: | |
| cache-read-only: "${{ github.ref != 'refs/heads/main' || github.event_name == 'pull_request' }}" | |
| arguments: "build" | |
| - name: "archive test results" | |
| if: "${{ always() }}" | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: "${{ runner.os }}-test-results" | |
| path: | | |
| build/reports/ | |
| */build/reports/ | |
| - name: "determine status" | |
| if: "${{ runner.os == 'Linux' }}" | |
| run: | | |
| if [ "$(./gradlew properties | awk '/^version:/ { print $2; }' | grep '\-SNAPSHOT')" ]; then | |
| echo "STATUS=snapshot" >> $GITHUB_ENV | |
| else | |
| echo "STATUS=release" >> $GITHUB_ENV | |
| fi | |
| - name: "publish" | |
| if: "${{ runner.os == 'Linux' && env.STATUS != 'release' && github.event_name == 'push' && github.ref == 'refs/heads/main' }}" | |
| run: "./gradlew publish" | |
| env: | |
| ORG_GRADLE_PROJECT_sonatypeUsername: "${{ secrets.SONATYPE_USERNAME }}" | |
| ORG_GRADLE_PROJECT_sonatypePassword: "${{ secrets.SONATYPE_PASSWORD }}" |