From 99009e0a069fa67061938da1eb2c7a4a36809b96 Mon Sep 17 00:00:00 2001 From: Daniel Bok Date: Tue, 12 Mar 2024 11:03:51 +0800 Subject: [PATCH] add logs --- .github/workflows/test-build-deploy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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