Skip to content

Commit

Permalink
Create sphinx-builder.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienLebranchu authored Dec 10, 2024
1 parent 4ca8cc9 commit 877efb0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/sphinx-builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Deploy Static Pages

on:
workflow_dispatch:

push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
build-n-deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Publish
id: deployment
uses: Kjuly/sphinx-publisher@main
with:
source_root: source
build_root: build
default_lang: en
lang_mappings: |-
en:en

0 comments on commit 877efb0

Please sign in to comment.