ruff + fix FAQ + remove announcement #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow for building sphinx documentation remotely | |
# and deploying the static HTML to a GitHub Pages site. | |
# Note this approach does not require the static HTML | |
# files to be stored/pushed/committed to an alternate | |
# pages branch or anything like that. It uses GitHub Action artifacts. | |
# https://github.com/sphinx-notes/pages | |
name: Build and Deploy Sphinx Docs to GitHub Pages | |
on: | |
push: | |
branches: | |
- master | |
release: | |
types: | |
- published | |
pull_request: | |
branches: | |
- master | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
permissions: | |
pages: write | |
id-token: write | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: sphinx-notes/pages@v3 |