Merge pull request #392 from oss-slu/380-refactor-adcconverterhelper #253
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: | |
| - main | |
| - develop | |
| jobs: | |
| adoc_build: | |
| runs-on: ubuntu-latest | |
| name: ASCII DOC build | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Get build container | |
| id: adocbuild | |
| uses: tonynv/asciidoctor-action@master | |
| with: | |
| program: "./gradlew asciidoctor" | |
| - name: Deploy docs to ghpages | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
| publish_branch: gh-pages | |
| publish_dir: ./pi4micronaut-utils/build/docs/asciidoc/ | |