Adding some LIN content #261
This file contains 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 Layered Standard Network Communication | |
on: | |
push: | |
branches-ignore: [ 'temp/*' ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-ls-bus: | |
name: Build Layered Standard Network Communication | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: prepare | |
run: mkdir build | |
- name: build layered standard Network Communication | |
uses: avattathil/asciidoctor-action@master | |
with: | |
program: "asciidoctor -D build --backend=html5 --attribute=revnumber=${GITHUB_REF#refs/heads/}-$GITHUB_SHA --attribute=revdate=$(date +%F) docs/index.adoc" | |
- name: copy images and examples | |
run: tar cfC - docs images examples | tar xfC - build | |
- name: archive layered standard Network Communication | |
uses: actions/upload-artifact@v3 | |
with: | |
name: FMI-LS-BUS | |
path: build/* | |
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 |