Fix FCS-QL EBNF for regular expression special characters #13
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 <fcs-core-2.0> adocs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| paths: | |
| - 'fcs-core-2.0/**' | |
| - '.github/workflows/build-fcs-core-2.0-adoc.yml' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: asciidoctor/docker-asciidoctor | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build HTML | |
| run: asciidoctor -v -D docs -a data-uri --backend=html5 -o fcs-core-2.0.html fcs-core-2.0/index.adoc | |
| - name: Build PDF | |
| run: asciidoctor-pdf -v -D docs -o fcs-core-2.0.pdf fcs-core-2.0/index.adoc | |
| - name: Copy attachments | |
| run: cp -R fcs-core-2.0/attachments docs/ | |
| - name: Store results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: fcs-core-2.0-specs | |
| path: docs/* |