Skip to content

Commit

Permalink
Add git workflow for publishing to pypi and test pypi (#1228)
Browse files Browse the repository at this point in the history
* add git workflow for publishing to pypi
  • Loading branch information
jeswan authored Nov 8, 2020
1 parent 9892766 commit d82524c
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Publish Python 🐍 distributions 📦 to PyPI

on: push

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7

- name: Install
if: startsWith(github.ref, 'refs/tags')
run: >-
python3 -m
pip install
--user
--upgrade setuptools wheel
- name: Build a binary wheel and a source tarball
if: startsWith(github.ref, 'refs/tags')
run: >-
python3 setup.py
sdist
bdist_wheel
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.pypi_password }}

0 comments on commit d82524c

Please sign in to comment.