Skip to content

Commit

Permalink
Merge pull request #75 from NeurodataWithoutBorders/auto_publish_action
Browse files Browse the repository at this point in the history
[Dev Feature]: auto-publish to PyPI
  • Loading branch information
bendichter authored Feb 23, 2022
2 parents 609226a + c8415cb commit 7e6f481
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/auto-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

name: Upload Package to PyPI

on:
release:
types: [published]

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.7"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
- name: Build package
run: python setup.py sdist bdist_wheel
- name: pypi-publish
uses: pypa/[email protected]
with:
verbose: true
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 7e6f481

Please sign in to comment.