From 9843b5559b6957721ce828774e72f080dd74ede6 Mon Sep 17 00:00:00 2001 From: Benjamin Wilson Date: Fri, 24 Jan 2025 23:38:51 -0800 Subject: [PATCH] Update release. --- .github/workflows/release.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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