From 3a678501472a56773897cb90e06369acaad76bd3 Mon Sep 17 00:00:00 2001 From: huyenngn Date: Tue, 17 Sep 2024 09:46:53 +0200 Subject: [PATCH] ci: Update upload artifact action --- .github/workflows/build-test-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test-publish.yml b/.github/workflows/build-test-publish.yml index d2f1ec6..99656bb 100644 --- a/.github/workflows/build-test-publish.yml +++ b/.github/workflows/build-test-publish.yml @@ -68,10 +68,10 @@ jobs: run: |- python -m twine check dist/* - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Artifacts - path: 'dist/*' + path: "dist/*" - name: Publish to PyPI (release only) if: startsWith(github.ref, 'refs/tags/v') run: python -m twine upload -u __token__ -p ${{ secrets.PYPI_TOKEN }} --non-interactive dist/*