Skip to content

Commit

Permalink
chore(ci): format doc worklow
Browse files Browse the repository at this point in the history
  • Loading branch information
corenting committed Mar 6, 2024
1 parent 0860261 commit 4614dd9
Showing 1 changed file with 29 additions and 31 deletions.
60 changes: 29 additions & 31 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,37 +17,35 @@ jobs:
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: "poetry"
- name: Setup environment
run: poetry install
- name: Build HTML
run: poetry run sphinx-build -M html docs docs/build
- name: Upload artifacts
uses: actions/upload-pages-artifact@v3
with:
path: docs/build/html/
- name: Checkout code
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: "poetry"
- name: Setup environment
run: poetry install
- name: Build HTML
run: poetry run sphinx-build -M html docs docs/build
- name: Upload artifacts
uses: actions/upload-pages-artifact@v3
with:
path: docs/build/html/
deploy:
name: Deploy documentation
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/v')
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
name: Deploy documentation
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/v')
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4 # or the latest "vX.X.X" version tag for this action


uses: actions/deploy-pages@v4

0 comments on commit 4614dd9

Please sign in to comment.