Add link to PlantUML lib release notes #121
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: PlantUML4Eclipse CI | |
| on: | |
| push: | |
| #branches: | |
| # - main | |
| branches-ignore: | |
| # - main | |
| - gh-pages | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| - name: Cache maven packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-m2 | |
| - name: Build PlantUML lib update site | |
| run: ./gradlew clean buildPlantUmlLibUpdateSite --no-daemon | |
| - name: Build and test PlantUML4Eclipse | |
| run: ./gradlew clean buildPlantUml4EUpdateSite --no-daemon |