From 4e549bb3dab9d71fdaa52f57add2c7eb4ed1007e Mon Sep 17 00:00:00 2001 From: Kenneth Bingham Date: Tue, 4 Mar 2025 21:34:12 -0500 Subject: [PATCH] correct path to test pypi upload --- .github/workflows/{publish-python.yml => build-wheels.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{publish-python.yml => build-wheels.yml} (95%) diff --git a/.github/workflows/publish-python.yml b/.github/workflows/build-wheels.yml similarity index 95% rename from .github/workflows/publish-python.yml rename to .github/workflows/build-wheels.yml index b5e05422..3f7f537a 100644 --- a/.github/workflows/publish-python.yml +++ b/.github/workflows/build-wheels.yml @@ -66,7 +66,7 @@ jobs: path: sdk/python/src/dist/* publish_testpypi: - name: Publish Test PyPI + name: Publish TestPyPI runs-on: ubuntu-24.04 needs: [ build_distributions ] permissions: @@ -79,11 +79,11 @@ jobs: merge-multiple: true pattern: zrok_sdk_distributions - - name: Publish Distributions to Test PyPI + - name: Publish Distributions to TestPyPI uses: pypa/gh-action-pypi-publish@release/v1 with: repository-url: https://test.pypi.org/legacy/ - packages-dir: dist + packages-dir: sdk/python/src/dist skip-existing: true verbose: true