Skip to content

ci(dependabot): bump actions/add-to-project from 1.0.1 to 1.0.2 (#311) #175

ci(dependabot): bump actions/add-to-project from 1.0.1 to 1.0.2 (#311)

ci(dependabot): bump actions/add-to-project from 1.0.1 to 1.0.2 (#311) #175

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
workflow_dispatch:
jobs:
docs:
if: ${{ !contains(github.event.head_commit.message, 'Bump version') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
with:
persist-credentials: false
- uses: ./.github/actions/dependencies
- name: Generate Docs
run: |
pdm run make gen-docs
touch docs/_build/html/.nojekyll
- name: Publish Docs
uses: JamesIves/github-pages-deploy-action@v4.6.8
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BASE_BRANCH: main # The branch the action should deploy from.
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: docs/_build/html/ # The folder the action should deploy.