Skip to content

Commit

Permalink
doc: add initial structure for documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-makerx committed Jan 30, 2024
1 parent e651258 commit ac12733
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,12 @@ jobs:
- name: Build doc
run: poetry run make -C docs html

- name: Upload artifacts
uses: actions/upload-artifact@v4
- name: Upload to GitHub pages
uses: actions/upload-pages-artifact@v2
# if: github.ref == 'refs/heads/main'
with:
name: html-docs
path: docs/_build/html/
path: docs/_build/html

- name: Deploy to GitHub pages
uses: peaceiris/actions-gh-pages@v3
- name: Deploy to GitHub Pages
# if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
uses: actions/deploy-pages@v2

0 comments on commit ac12733

Please sign in to comment.