Skip to content

added workflow

added workflow #1

Workflow file for this run

name: Build Documentation and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
mkdir _build

Check failure on line 18 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
cmake -B ./_build .
cmake --build "_build" --target ALL
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build/doc/sphinx