Skip to content

Commit

Permalink
update workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
Alleria1809 committed Jul 12, 2024
1 parent 3f5f001 commit 8eeb734
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@ jobs:
uses: actions/download-artifact@v2
with:
name: dist
path: dist
path: lightrag/dist/
- name: Install Poetry and perform dry run publish
run: |
python -m pip install --upgrade pip
pip install poetry
cd dist
cd lightrag
poetry publish --dry-run -v
publish-to-pypi:
Expand All @@ -110,12 +110,12 @@ jobs:
uses: actions/download-artifact@v2
with:
name: dist
path: dist
path: lightrag/dist/
- name: Install Poetry and publish to PyPI
run: |
python -m pip install --upgrade pip
pip install poetry
cd dist
cd lightrag
poetry publish --username __token__ --password ${{ secrets.PYPI_KEY }} --verbose
create-github-release:
Expand Down

0 comments on commit 8eeb734

Please sign in to comment.