Skip to content

Commit

Permalink
Release v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
anjanvb committed Sep 11, 2024
1 parent 4406c58 commit 6297c3f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,14 @@ jobs:
- name: Install dependencies
run: poetry install

- name: Clean previous builds
run: rm -rf dist

- name: Build package
run: poetry build --verbose

- name: Build and publish to PyPI
if: startsWith(github.ref, 'refs/tags/v')
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
run: poetry publish --build
run: poetry publish --verbose

0 comments on commit 6297c3f

Please sign in to comment.