Add release notes for 7.0.4.Final and 6.2.18.Final. #111
Workflow file for this run
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: Test site build | |
| on: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v6 | |
| with: | |
| java-version: '25' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Build with Maven | |
| run: mvn --batch-mode clean test | |
| - name: Save PR number | |
| run: echo ${{ github.event.number }} > pr-number.txt | |
| - name: Upload PR number | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: pr-number | |
| path: pr-number.txt | |
| - name: Archive generated site | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: generated-site | |
| path: ./target/roq/ |