diff --git a/.github/workflows/test-build-deploy.yml b/.github/workflows/test-build-deploy.yml index c71c039..8e7e605 100644 --- a/.github/workflows/test-build-deploy.yml +++ b/.github/workflows/test-build-deploy.yml @@ -203,11 +203,6 @@ jobs: with: python-version: '3.10' - - name: Retrieve packages - uses: actions/download-artifact@v4 - with: - path: dist - - name: Install twine run: pip install twine @@ -218,10 +213,15 @@ jobs: .github/utils sparse-checkout-cone-mode: false + - name: Retrieve packages + uses: actions/download-artifact@v4 + with: + path: dist + - name: Find and copy packages to files/ run: | mkdir files - ls -al dist/* + ls -ltR python .github/utils/find.py -from dist -to files -pattern "(.tar.gz|.whl)$" - name: Upload packages to testpypi