Skip to content

Commit

Permalink
Added Pypi workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
hendriks73 committed Oct 12, 2020
1 parent 07dacba commit 4a2efd8
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This workflows 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 Python Package

on:
release:
types: [created]

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.6'
- name: Install dependencies
run: |
sudo apt-get install libsndfile1
sudo apt-get install ffmpeg
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install .[testing]
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Changes
- Switched to pytest.
- Officially support Python 3.7.
- Enabled GitHub actions for packaging and testing.
- Added Pypi workflow.

0.0.4:
- Added support for DeepTemp, DeepSquare, and ShallowTemp models.
Expand Down

0 comments on commit 4a2efd8

Please sign in to comment.