Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
pytest

- name: Upload Coverage Results
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: HTML-Coverage
path: cov_html
Expand Down Expand Up @@ -199,15 +199,15 @@ jobs:
make -C doc html

- name: Upload documentation
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: HTML-Documentation
path: doc/_build/html
retention-days: 7

- name: Deploy documentation to gh-pages
if: github.ref == 'refs/heads/main'
uses: JamesIves/[email protected].4
uses: JamesIves/[email protected].6
with:
token: ${{ secrets.github_token }}
branch: gh-pages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ jobs:
make -C doc html

- name: Upload documentation
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: HTML-Documentation
path: doc/_build/html
retention-days: 7

- name: Deploy documentation to gh-pages
if: github.ref == 'refs/heads/main'
uses: JamesIves/[email protected].4
uses: JamesIves/[email protected].6
with:
token: ${{ secrets.github_token }}
branch: gh-pages
Expand Down