Merge pull request #482 from sakshar2303/fix/470-git-user-config-in-b… #330
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/ |