small fixes in getter function examples for CAN in ls-bus-guide #354
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 Guides | |
| on: | |
| push: | |
| branches-ignore: [ 'temp/*' ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-guides: | |
| name: Build FMI Guides | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| - name: prepare | |
| run: mkdir build && mkdir build/fmi-guide && mkdir build/ls-bus-guide && mkdir build/fmi-profiles | |
| - name: build implementers guide | |
| uses: avattathil/asciidoctor-action@master | |
| with: | |
| program: "asciidoctor -D build/fmi-guide --backend=html5 --attribute=revnumber=${GITHUB_REF#refs/heads/}-$GITHUB_SHA --attribute=revdate=$(date +%F) fmi-guide/index.adoc" | |
| - name: build LS-BUS implementers guide | |
| uses: avattathil/asciidoctor-action@master | |
| with: | |
| program: "asciidoctor -D build/ls-bus-guide --backend=html5 --attribute=revnumber=${GITHUB_REF#refs/heads/}-$GITHUB_SHA --attribute=revdate=$(date +%F) ls-bus-guide/index.adoc" | |
| - name: build FMI profiles | |
| uses: avattathil/asciidoctor-action@master | |
| with: | |
| program: "asciidoctor -D build/fmi-profiles --backend=html5 --attribute=revnumber=${GITHUB_REF#refs/heads/}-$GITHUB_SHA --attribute=revdate=$(date +%F) fmi-profiles/index.adoc" | |
| - name: copy images | |
| run: tar cf - fmi-guide/images ls-bus-guide/images fmi-profiles/images | tar xfC - build | |
| - name: archive implementers guide | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: FMI-Guide | |
| path: build/fmi-guide/* | |
| if-no-files-found: error | |
| - name: archive LS-BUS implementers guide | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: LS-BUS-Guide | |
| path: build/ls-bus-guide/* | |
| if-no-files-found: error | |
| - name: archive FMI profiles | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: FMI-Profiles | |
| path: build/fmi-profiles/* | |
| if-no-files-found: error | |
| - name: extract branch name | |
| id: extract_branch | |
| shell: bash | |
| run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT | |
| - name: deploy | |
| if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
| uses: peaceiris/[email protected] | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: build | |
| destination_dir: ${{ steps.extract_branch.outputs.branch }} | |
| enable_jekyll: true |