Skip to content

Commit d17b74d

Browse files
authored
Rename and adjust dist package gathering step
1 parent 2373faa commit d17b74d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ jobs:
5757
uses: actions/download-artifact@v4
5858
with:
5959
path: dist
60-
- name: Flatten dist packages
60+
- name: Gather distribution files
6161
run: |
62-
mkdir dist_flat
63-
find dist -name "*.whl" -exec cp {} dist_flat/ \;
64-
find dist -name "*.tar.gz" -exec cp {} dist_flat/ \;
62+
mkdir dist
63+
find dist -name "*.whl" -exec cp {} dist/ \;
64+
find dist -name "*.tar.gz" -exec cp {} dist/ \;
6565
- uses: pypa/gh-action-pypi-publish@v1.5.1
6666
with:
6767
user: __token__
6868
password: ${{ secrets.pypi_password }}
69-
packages_dir: dist_flat
69+
packages_dir: dist

0 commit comments

Comments
 (0)