Skip to content

Commit e78f674

Browse files
committed
hotfix CI: upload/download actions need v3 to allow multiple uploads to the same named Artifact
1 parent 30098ba commit e78f674

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
output-dir: dist
7373

74-
- uses: actions/upload-artifact@v4
74+
- uses: actions/upload-artifact@v3
7575
with:
7676
path: ./dist/*.whl
7777

@@ -112,7 +112,7 @@ jobs:
112112
# PEP 517 package builder from pypa
113113
python -m build --sdist --outdir dist .
114114
115-
- uses: actions/upload-artifact@v4
115+
- uses: actions/upload-artifact@v3
116116
# if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
117117
with:
118118
path: dist/*.tar.gz
@@ -122,7 +122,7 @@ jobs:
122122
runs-on: ubuntu-latest
123123

124124
steps:
125-
- uses: actions/download-artifact@v4
125+
- uses: actions/download-artifact@v3
126126
with:
127127
name: artifact
128128
path: dist

0 commit comments

Comments
 (0)