Skip to content

Commit

Permalink
Merge pull request #41 from tkzt/main
Browse files Browse the repository at this point in the history
ci: fixes errors during doc deploying
  • Loading branch information
tkzt authored Dec 30, 2024
2 parents 6c833e2 + cb20604 commit e614fed
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
run: pdm install -Gdoc
- name: Build documentation
run: pdm run mkdocs build --clean
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: documentation
path: site

deploy:
needs: build
Expand All @@ -35,7 +40,11 @@ jobs:
environment:
name: github-pages
steps:
- uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: documentation
path: site
- name: Upload to GitHub Pages
uses: actions/upload-pages-artifact@v3
with:
Expand Down

0 comments on commit e614fed

Please sign in to comment.