Skip to content

Commit

Permalink
updated to create distribution first (#29)
Browse files Browse the repository at this point in the history
* updated to create distribution first

* added build command and removed twine installation
  • Loading branch information
KapilDuwadi authored Jun 5, 2024
1 parent e1da42a commit d4209c3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,16 @@ jobs:
id-token: write
steps:
# retrieve your distributions here
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build
python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit d4209c3

Please sign in to comment.