Skip to content

Commit

Permalink
publish to pypi as releases are generated with the release drafter (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
chayim authored Nov 4, 2021
1 parent 8d3c615 commit 9804bdc
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pypi-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish tag to Pypi

on:
release:
types: [published]

jobs:

build_and_package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install python
uses: actions/setup-python@v2
with:
python-version: 3.0
- name: Install dev tools
run: |
pip install -r dev_requirements.txt
pip install twine wheel
- name: Build package
run: |
python setup.py build
python setup.py dist bdist_wheel
- name: Publish to Pypi
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 9804bdc

Please sign in to comment.