Skip to content

Commit c7ada98

Browse files
authored
Merge pull request #39 from narugo1992/main
dev(narugo): downgrade to artifacts@v3, fix issue #38
2 parents 40cf9ba + 7f4ac45 commit c7ada98

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/github-deploy.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
- name: Build wheels
3030
run: python -m cibuildwheel --output-dir wheelhouse
3131

32-
- uses: actions/upload-artifact@v4
32+
- uses: actions/upload-artifact@v3
3333
with:
34-
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
34+
name: artifact
3535
path: ./wheelhouse/*.whl
3636

3737
build_sdist:
@@ -43,8 +43,9 @@ jobs:
4343
- name: Build sdist
4444
run: pipx run build --sdist
4545

46-
- uses: actions/upload-artifact@v4
46+
- uses: actions/upload-artifact@v3
4747
with:
48+
name: artifact
4849
path: dist/*.tar.gz
4950

5051
upload_pypi:
@@ -55,7 +56,7 @@ jobs:
5556
id-token: write
5657
if: github.event_name == 'release' && github.event.action == 'published'
5758
steps:
58-
- uses: actions/download-artifact@v4
59+
- uses: actions/download-artifact@v3
5960
with:
6061
name: artifact
6162
path: dist

0 commit comments

Comments
 (0)