Skip to content

Commit

Permalink
Fixed documentation CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fredmontet committed Jan 29, 2024
1 parent 39dfbcd commit 3d304c4
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,33 +55,33 @@ jobs:
name: documentation
path: ./docs/_build/html

# --------------------------------
# Deploy : Deploy the Documentation
# --------------------------------
# --------------------------------
# Deploy : Deploy the Documentation
# --------------------------------

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Download documentation artifact
uses: actions/download-artifact@v4
with:
name: documentation
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Download documentation artifact
uses: actions/download-artifact@v4
with:
name: documentation

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs/_build/html'
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs/_build/html'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 3d304c4

Please sign in to comment.