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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ jobs:
ls -al dist/ # Verify the wheel is created

- name: Upload Wheel Artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: mcpartools-wheel
path: dist/*.whl

- name: Upload Sample Test Data Artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sample-fluka-input
path: tests/res/sample_fluka.inp
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:

- name: Upload Zipapp Executable as Artifact
# This step makes the .pyz file available if needed for later stages (e.g., release)
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: generatemc-zipapp
path: generatemc.pyz
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ jobs:
pyinstaller main.spec
ls -al dist/generatemc

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: single
path: dist/generatemc

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: wheel
path: dist/*.whl

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: source
path: dist/*.tar.gz
Expand Down
Loading