Skip to content

Remove flake for now (#95) #2

Remove flake for now (#95)

Remove flake for now (#95) #2

Workflow file for this run

name: Deploy Documentation
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy-docs:
name: Generate and Deploy Documentation
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Make script executable
run: chmod +x Scripts/generate-docs.sh
- name: Generate documentation
run: Scripts/generate-docs.sh
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./Docs
publish_branch: gh-pages
force_orphan: true