Cache applied/extracted classpath from Paperclips instead of Paperclips themselves #383
This file contains 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: | |
release: | |
types: [ released ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [ "17" ] | |
os: [ "ubuntu-latest" ] | |
# 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 }} | |
runs-on: "${{ matrix.os }}" | |
steps: | |
- name: "checkout repository" | |
uses: "actions/checkout@v4" | |
- name: "setup jdk ${{ matrix.java }}" | |
uses: "actions/setup-java@v4" | |
with: | |
distribution: 'temurin' | |
java-version: "${{ matrix.java }}" | |
- name: "setup gradle" | |
uses: gradle/actions/setup-gradle@v4 | |
- name: "build" | |
run: "./gradlew :plugin:build" | |
- name: "determine status" | |
run: | | |
if [ "$(./gradlew :plugin:properties | awk '/^version:/ { print $2; }' | grep '\-SNAPSHOT')" ]; then | |
echo "STATUS=snapshot" >> $GITHUB_ENV | |
else | |
echo "STATUS=release" >> $GITHUB_ENV | |
fi | |
- name: "publish snapshot" | |
if: "${{ env.STATUS != 'release' && github.event_name == 'push' && github.ref == 'refs/heads/master' }}" | |
run: ./gradlew :plugin:publish | |
env: | |
ORG_GRADLE_PROJECT_jmpUsername: "${{ secrets.JMP_REPO_USER }}" | |
ORG_GRADLE_PROJECT_jmpPassword: "${{ secrets.JMP_REPO_PASSWORD }}" | |
- name: "publish release" | |
if: "${{ env.STATUS == 'release' && github.event_name == 'release' }}" | |
run: ./gradlew :plugin:publishPlugins | |
env: | |
ORG_GRADLE_PROJECT_pluginPortalApiKey: "${{ secrets.GRADLE_PLUGIN_PORTAL_KEY }}" | |
ORG_GRADLE_PROJECT_pluginPortalApiSecret: "${{ secrets.GRADLE_PLUGIN_PORTAL_SECRET }}" | |
ORG_GRADLE_PROJECT_signingKey: "${{ secrets.SIGNING_KEY }}" | |
ORG_GRADLE_PROJECT_signingPassword: "${{ secrets.SIGNING_PASSWORD }}" |