mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
set cli package to planoai instead of cli (#664)
This commit is contained in:
parent
053e2b3a74
commit
4c4bc99e31
5 changed files with 28 additions and 16 deletions
23
.github/workflows/publish-pypi.yml
vendored
23
.github/workflows/publish-pypi.yml
vendored
|
|
@ -24,12 +24,19 @@ jobs:
|
|||
with:
|
||||
python-version: "3.12"
|
||||
|
||||
- name: install uv
|
||||
run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||
|
||||
- name: Build and publish to PyPI
|
||||
env:
|
||||
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
||||
- name: Install build dependencies
|
||||
run: |
|
||||
uv build
|
||||
uv publish
|
||||
python -m pip install --upgrade pip
|
||||
pip install build twine
|
||||
|
||||
- name: Build package
|
||||
run: python -m build
|
||||
|
||||
- name: Check package with twine
|
||||
run: twine check dist/*
|
||||
|
||||
- name: Publish to PyPI
|
||||
env:
|
||||
TWINE_USERNAME: __token__
|
||||
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
||||
run: twine upload dist/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue