Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:
cd docs/build/latex
latexmk -interaction=nonstopmode -pdf muse
- name: Upload HTML
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: DocumentationHTML
path: docs/build/html
- name: Upload PDF
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: DocumentationPDF
path: docs/build/latex/muse.pdf
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
python -m pip install --upgrade build
python -m build

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
path: dist/muse*

Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
- name: Build directory-based standalone
run: pyinstaller muse_dir.spec --distpath standalone

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
path: standalone/MUSE*
name: MUSE
Expand Down