Skip to content

Commit

Permalink
fix(ci): use poetry for build dist
Browse files Browse the repository at this point in the history
  • Loading branch information
aexvir committed Mar 2, 2021
1 parent d020738 commit 8d74bef
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,18 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
- name: Install poetry
run: >-
python -m
pip install
setuptools
wheel
poetry
--user
- name: Install dependencies
run: >-
poetry install
- name: Build wheels
run: >-
python
setup.py
sdist
bdist_wheel
--universal
poetry build
- name: Publish package to pypi.org
if: startsWith(github.event.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
Expand Down

0 comments on commit 8d74bef

Please sign in to comment.