Skip to content

Commit

Permalink
Fix publisher (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
matz-e authored Jun 6, 2024
1 parent b0dc946 commit ff7aa6a
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python -m build -s
- name: Store sdist as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/*.tar.gz
Expand All @@ -46,7 +46,7 @@ jobs:
python-version: 3.12

- name: Download artifacts produced during the build_wheels and build_sdist jobs
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
path: dist/
Expand Down Expand Up @@ -119,16 +119,9 @@ jobs:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing

steps:
- name: Download artifacts produced by the build_sdist job
uses: actions/download-artifact@v4
with:
name: dist
path: dist/

- name: Download artifacts produced by the build_wheels job
- name: Download artifacts produced by the build jobs
uses: actions/download-artifact@v4
with:
pattern: cibw-wheels-*
path: dist/
merge-multiple: true

Expand Down

0 comments on commit ff7aa6a

Please sign in to comment.