Make Documentation AI-friendly #1190
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: Dashjoin CI build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
#cache: 'maven' | |
- name: Build with Maven | |
run: ./mvnw -v && ./mvnw -B install --file pom-ci.xml -Drevision=1.0.0-$(git rev-parse --short $GITHUB_SHA) |