Skip to content

Commit

Permalink
test version release
Browse files Browse the repository at this point in the history
  • Loading branch information
Alleria1809 committed Jul 7, 2024
1 parent 2685704 commit c594c21
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test_publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,22 @@ jobs:
dry-run-publish:
needs: build-and-package
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12'] # Ensure consistency with build-and-package job

steps:
- uses: actions/checkout@v3
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Dry run publish to PyPI
run: |
cd lightrag
poetry publish --dry-run
poetry publish --dry-run --build
# This step simulates the publishing process without making actual changes
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[tool.poetry]
name = "lightrag-project"
version = "v0.1.0-releasetest.1"
version = "v0.1.0-releasetest.2"
description = "A project to develop and test the lightrag library"
authors = ["Your Name <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit c594c21

Please sign in to comment.