Skip to content

Update README.md

Update README.md #15

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- name: Installing dependencies
run: |
sudo apt-get update
sudo apt-get install -y doxygen
- name: Build Docs
run: ./swilib/tools/gen-docs.sh
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v3
# If you're changing the branch from main,
# also change the `main` in `refs/heads/main`
# below accordingly.
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./swilib/html/