Skip to content

Commit

Permalink
ci: copy files to dist
Browse files Browse the repository at this point in the history
  • Loading branch information
williballenthin committed Mar 10, 2024
1 parent aa17715 commit bad0494
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,11 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
path: dist/
path: artifacts/
- name: move files to dist/
run: |
shopt -s globstar # Enable recursive globbing (**)
cp -r artifacts/**/* dist/
- name: publish package
uses: pypa/gh-action-pypi-publish@f5622bde02b04381239da3573277701ceca8f6a0 # release/v1
with:
Expand Down

0 comments on commit bad0494

Please sign in to comment.