summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2025-12-31 18:46:03 +0800
committerHsiangNianian <i@jyunko.cn>2025-12-31 18:46:03 +0800
commit00518d047b632274913909697969dc23cf880d6a (patch)
tree8be183e848458322e804cad573cc1d69d3b68cf6
parentb1e11ce7662586b880ce09fdd474934d11b4dbe2 (diff)
downloadbase-model-00518d047b632274913909697969dc23cf880d6a.tar.gz
base-model-00518d047b632274913909697969dc23cf880d6a.zip
fix: update TestPyPI publishing step to use correct distribution path
-rw-r--r--.github/workflows/publish.yml3
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