Skip to content

Commit

Permalink
Merge pull request #39 from narugo1992/main
Browse files Browse the repository at this point in the history
dev(narugo): downgrade to artifacts@v3, fix issue #38
  • Loading branch information
jkent authored Sep 12, 2024
2 parents 40cf9ba + 7f4ac45 commit c7ada98
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/github-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse

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

build_sdist:
Expand All @@ -43,8 +43,9 @@ jobs:
- name: Build sdist
run: pipx run build --sdist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: artifact
path: dist/*.tar.gz

upload_pypi:
Expand All @@ -55,7 +56,7 @@ jobs:
id-token: write
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
Expand Down

0 comments on commit c7ada98

Please sign in to comment.