Skip to content

Add '|" for multiline command #7

Add '|" for multiline command

Add '|" for multiline command #7

Workflow file for this run

name: Build doxygen and deploy to GitHub Pages
on:
push:
branches:
- Deploy-branch-Awsome-CSS
jobs:
build-and-deploy:
runs-on: ubuntu-latest
concurrency: ci-${{github. ref}}
steps:
- name : Checkout
uses: actions/checkout@v4
with:
submodules: "true"
- name: Install Doxygen
run: sudo apt-get install doxygen graphviz -y
shell: bash
- name: Generate Doxygen Documentation
run: |
cd docs
cd doxygen
doxygen doxygen.cfg
shell: bash
- name: Create .nojekyll
run: |
cd ..
touch html/.nojekyll
shell: bash
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: build