Delete pypi-publish.yml
This commit is contained in:
parent
1f9764189c
commit
1e3634f6da
1 changed files with 0 additions and 28 deletions
28
.github/workflows/pypi-publish.yml
vendored
28
.github/workflows/pypi-publish.yml
vendored
|
|
@ -1,28 +0,0 @@
|
||||||
name: Publish LightRAG to PyPI
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [published]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-and-publish:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- name: set up python
|
|
||||||
uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version: '3.10'
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run:
|
|
||||||
python -m pip install --upgrade pip
|
|
||||||
pip install build twine
|
|
||||||
|
|
||||||
- name: Build package
|
|
||||||
run: python -m build
|
|
||||||
|
|
||||||
- name: Publish distribution
|
|
||||||
env:
|
|
||||||
TWINE_USERNAME: __TOKEN__
|
|
||||||
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
|
|
||||||
run: python -m twine upload dist/*
|
|
||||||
Loading…
Add table
Reference in a new issue