Skip to content

Commit

Permalink
Merge pull request #53 from certego/develop
Browse files Browse the repository at this point in the history
Fix python publish
  • Loading branch information
0ssigeno authored Jan 3, 2023
2 parents 4f334d9 + 91aabdb commit 6122cf5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ jobs:
- uses: actions/setup-python@v1
with:
python-version: "3.x"
- name: Install dependencies and Build

- name: Install pypa/build
run: |
python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
python setup.py sdist bdist_wheel
python -m build --sdist --wheel --outdir dist/
- name: Publish to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit 6122cf5

Please sign in to comment.