Skip to content

Commit

Permalink
Merge pull request #57 from ucsd-ets/danial/automate-pypi-release
Browse files Browse the repository at this point in the history
Add github workflow to automate pypi release
  • Loading branch information
Danial Malik authored Aug 6, 2020
2 parents fedb743 + 9ebeb51 commit d3dab99
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish the app distributions to PyPI

on:
push:
tags:
- 'v*'

jobs:
build-n-publish:
name: Build and publish the app distribution to PyPI
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
- name: Set up Python 2.7
uses: actions/setup-python@v1
with:
python-version: 2.7

- name: Install twine and wheel
run: |
python -m pip install twine wheel
- name: Build a binary wheel and a source tarball
run: |
python setup.py sdist bdist_wheel
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_SECRET }}

0 comments on commit d3dab99

Please sign in to comment.