Skip to content

ci: Update github-projects.yml #606

ci: Update github-projects.yml

ci: Update github-projects.yml #606

Workflow file for this run

---
#----------------------------------------------
# Generate and upload documentation (only push to main)
#----------------------------------------------
name: Generate documentation
on:
pull_request:
# on pull request we just want to build to see nothing is broken
paths:
- "README.md"
- "docs/**"
- ".github/workflows/generate-docs.yml"
- "mkdocs.yml"
push:
branches:
- develop
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Checks
run: |
make check_docs
- name: Generate documentation
run: |
make build_docs
- name: Deploy documentation to Github Pages 🚀
# we only deploy on push to main
if: |
github.event_name == 'push' && github.event.ref == 'refs/heads/develop'
uses: JamesIves/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages # The branch the action should deploy to.
folder: gh_pages # The folder the action should deploy.
clean: true # Automatically remove deleted files from the deploy branc