Skip to content

ci: deploy website

ci: deploy website #2

Workflow file for this run

name: Deploy Documentation
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
deploy: ubuntu-latest

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

View workflow run for this annotation

GitHub Actions / Deploy Documentation

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 17, Col: 5): Unexpected value 'deploy' .github/workflows/deploy.yml (Line: 17, Col: 5): Required property is missing: runs-on
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: make install
- run: make build
- uses: peaceiris/actions-gh-pages@v3
if: github.event_name != 'pull_request'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/book
publish_branch: asf-site