diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 35514d91..17899c6c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -285,8 +285,13 @@ jobs: # args: --repository-url='https://test.pypi.org/project/av2-api/' --non-interactive --skip-existing wheels-*/* - name: Display structure of downloaded files run: ls -R + - name: Copy wheels artifacts + run: | + find dist -type f -name "wheels-*" -exec cp {} wheels/ \; + - name: Display structure of downloaded files + run: ls -R - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: repository-url: https://test.pypi.org/legacy/ - packages-dir: wheels-*/** \ No newline at end of file + packages-dir: wheels/ \ No newline at end of file