fetch-depth 0 + update GH actions #15
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: Java Main Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 # need full history for reckon (tags) | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 | |
- name: Build & Test | |
# https://github.com/burrunan/gradle-cache-action | |
uses: burrunan/gradle-cache-action@a54b6ce2cbbba932e5d142129dddef103e6ad143 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
# Building & Testing the examples project so that we can do everything in 1 build | |
build-root-directory: examples | |
arguments: :plugin:assemble :plugin:check assemble check --continue --stacktrace | |
- name: Publish Snapshot (on main) | |
if: github.ref == 'refs/heads/main' | |
uses: burrunan/gradle-cache-action@a54b6ce2cbbba932e5d142129dddef103e6ad143 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
build-root-directory: plugin | |
arguments: publish --continue --stacktrace | |
execution-only-caches: true | |