Delete .vscode directory #168
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
name: Publish Docs | |
on: | |
push: | |
branches: main # branch to trigger deployment | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
builddeploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Sphinx Builder | |
uses: Kjuly/[email protected] | |
with: | |
source_root: 'docs' | |
build_root: 'build' | |
default_lang: 'en' | |
lang_mappings: '' | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Upload Pages Artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: '${{ github.workspace }}/build/html' | |
- name: deployment | |
id: deployment | |
uses: actions/deploy-pages@v4 |