Skip to content

Commit

Permalink
Download artifacts separately
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonyte committed Nov 12, 2023
1 parent 1767241 commit 4293707
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ jobs:
permissions:
contents: write
steps:
- name: Download artifacts
- name: Download sdist artifact
uses: actions/download-artifact@v3
with:
name: sdist
path: ./dist

- name: Download wheels artifact
uses: actions/download-artifact@v3
with:
name: wheels
path: ./dist

- name: Create release
Expand All @@ -35,9 +42,16 @@ jobs:
permissions:
id-token: write
steps:
- name: Download artifacts
- name: Download sdist artifact
uses: actions/download-artifact@v3
with:
name: sdist
path: ./dist

- name: Download wheels artifact
uses: actions/download-artifact@v3
with:
name: wheels
path: ./dist

- name: Upload distributions to PyPI
Expand Down

0 comments on commit 4293707

Please sign in to comment.