Skip to content

Commit

Permalink
workflows/release: fix @v4 artifact action usage (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
woodruffw authored Jan 18, 2024
1 parent 3a5abcb commit 8d303f5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: upload linux dists
uses: actions/upload-artifact@v4
with:
name: pyrage-dists
name: pyrage-dists-linux
path: dist/

release-macos:
Expand All @@ -46,7 +46,7 @@ jobs:
- name: upload macos dists
uses: actions/upload-artifact@v4
with:
name: pyrage-dists
name: pyrage-dists-macos
path: dist/

release-windows:
Expand All @@ -70,7 +70,7 @@ jobs:
- name: upload windows dists
uses: actions/upload-artifact@v4
with:
name: pyrage-dists
name: pyrage-dists-windows
path: dist/

pypi-publish:
Expand All @@ -93,8 +93,9 @@ jobs:
- name: fetch dists
uses: actions/download-artifact@v4
with:
name: pyrage-dists
pattern: pyrage-dists-*
path: dist/
merge-multiple: true

- name: publish
uses: pypa/[email protected]
Expand Down

0 comments on commit 8d303f5

Please sign in to comment.