Update gradle/actions action to v5 (#85) #297
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: ["pull_request", "push"] | |
| jobs: | |
| build: | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: "Checkout Repository" | |
| uses: actions/checkout@v5 | |
| - name : "Validate Gradle Wrapper" | |
| uses: gradle/actions/wrapper-validation@v5 | |
| - name: "Setup Java" | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: "temurin" | |
| java-version: "17" | |
| - name: "Clean Build" | |
| run: "./gradlew clean build" | |
| - name : "Archive Artifacts" | |
| uses : "actions/upload-artifact@v5" | |
| with : | |
| name : "HeadDatabase-API-SNAPSHOT" | |
| path : "build/libs/*.jar" | |
| - name: "Determine release 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 Release" | |
| if: "${{ runner.os == 'Linux' && env.STATUS == 'release' && github.event_name == 'push' && github.ref == 'refs/heads/main'}}" | |
| run: "./gradlew publishAndReleaseToMavenCentral --no-configuration-cache" | |
| env : | |
| ORG_GRADLE_PROJECT_mavenCentralUsername : "${{ secrets.SONATYPE_USERNAME }}" | |
| ORG_GRADLE_PROJECT_mavenCentralPassword : "${{ secrets.SONATYPE_PASSWORD }}" | |
| ORG_GRADLE_PROJECT_signingKey : "${{ secrets.SIGNING_KEY }}" | |
| ORG_GRADLE_PROJECT_signingPassword : "${{ secrets.SIGNING_PASSWORD }}" | |
| - name : "Publish Snapshot" | |
| if : "${{ runner.os == 'Linux' && env.STATUS != 'release' && github.event_name == 'push' && github.ref == 'refs/heads/main' }}" | |
| run : "./gradlew publishAllPublicationsToMavenCentralRepository" | |
| env : | |
| ORG_GRADLE_PROJECT_mavenCentralUsername : "${{ secrets.SONATYPE_USERNAME }}" | |
| ORG_GRADLE_PROJECT_mavenCentralPassword : "${{ secrets.SONATYPE_PASSWORD }}" |