Skip to content

Commit

Permalink
Merge pull request #256 from LSSTDESC/issue/255/pypi_gh_action
Browse files Browse the repository at this point in the history
Add example PyPI upload example
  • Loading branch information
Catarina-Alves authored Sep 16, 2021
2 parents 580eb70 + 7915949 commit 31fdfb1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Setting up github action for pypi

name: Upload Python Package

on:
release:
types: [created]

jobs:
deploy:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TESTPYPI_API_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload --repository testpypi dist/*

0 comments on commit 31fdfb1

Please sign in to comment.