diff options
| author | 2025-12-31 18:46:03 +0800 | |
|---|---|---|
| committer | 2025-12-31 18:46:03 +0800 | |
| commit | 00518d047b632274913909697969dc23cf880d6a (patch) | |
| tree | 8be183e848458322e804cad573cc1d69d3b68cf6 /.github/workflows | |
| parent | b1e11ce7662586b880ce09fdd474934d11b4dbe2 (diff) | |
| download | base-model-00518d047b632274913909697969dc23cf880d6a.tar.gz base-model-00518d047b632274913909697969dc23cf880d6a.zip | |
fix: update TestPyPI publishing step to use correct distribution path
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/publish.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 13eed6b..0c1650c 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -120,11 +120,12 @@ jobs: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.TEST_PYPI_TOKEN }} run: | + cd .. ls -la pwd uv sync uv pip install twine - uv run twine upload --repository testpypi --skip-existing --verbose dist/* + uv run twine upload --repository testpypi --skip-existing --verbose base-model/dist/* publish-pypi: name: Publish to PyPI |
