Skip to content

Commit

Permalink
Add GitHub workflow python publishing (flyteorg#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
wild-endeavor committed Mar 12, 2020
1 parent d62036e commit 0d232a7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 5 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pythonpublish.yaml
@@ -0,0 +1,26 @@
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@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- 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/*
5 changes: 0 additions & 5 deletions .travis.yml
Expand Up @@ -14,8 +14,3 @@ jobs:
name: unit tests
install: make install
script: make test_unit
- if: tag IS present AND fork = false
stage: release
name: release Python package
install: skip
script: make release

0 comments on commit 0d232a7

Please sign in to comment.