Skip to content

Commit

Permalink
hotfix CI: upload/download actions need v3 to allow multiple uploads …
Browse files Browse the repository at this point in the history
…to the same named Artifact
  • Loading branch information
MuellerSeb committed Apr 10, 2024
1 parent 30098ba commit e78f674
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
with:
output-dir: dist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: ./dist/*.whl

Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
# PEP 517 package builder from pypa
python -m build --sdist --outdir dist .
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
# if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
with:
path: dist/*.tar.gz
Expand All @@ -122,7 +122,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
Expand Down

0 comments on commit e78f674

Please sign in to comment.