Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix gh-pages deployment #180

Merged
merged 1 commit into from
Oct 23, 2024
Merged
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
18 changes: 18 additions & 0 deletions .github/workflows/Doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,29 @@ jobs:
mkdir to-upload/pyMaCh3
mv Doc/sphinx/build/html/* to-upload/pyMaCh3/

- uses: actions/upload-artifact@v4
with:
retention-days: 1
name: DocumentationHTML
path: to-upload


Deploy:
runs-on: ubuntu-latest
needs: [Doxygen, Sphinx]

steps:

- name: Download Artifact
uses: actions/download-artifact@master
with:
name: DocumentationHTML
path: to-upload/

## EM: Now we delete the artifact so it doesn't use up our allowance
- uses: geekyeggo/delete-artifact@v5
with:
name: DocumentationHTML

# Deploys the generated documentation to GitHub Pages
- name: Deploy
Expand Down
Loading