fix: upgrade JDK 17 to JDK 21 for Raspberry Pi compatibility #333
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: build adocs | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| workflow_call: | |
| jobs: | |
| adoc_build: | |
| runs-on: ubuntu-latest | |
| name: ASCII DOC build | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Get build container | |
| uses: tonynv/asciidoctor-action@v2 | |
| with: | |
| program: "./gradlew asciidoctor" | |
| - name: Upload AsciiDoc output | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: asciidoc-output | |
| path: pi4micronaut-utils/build/docs/asciidoc/ |