Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub Action - PyPI Upload #816

Merged
merged 2 commits into from Nov 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
@@ -0,0 +1,18 @@
on:
release:
types: [published]

name: Release
jobs:
pypi:
name: PyPI Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: PyPI Upload
uses: FeatureLabs/gh-action-pypi-upload@master
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
TEST_PYPI_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
TEST_PYPI_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
3 changes: 2 additions & 1 deletion docs/source/changelog.rst
Expand Up @@ -4,6 +4,7 @@ Changelog
---------
**Future Release**
* Enhancements
* Added GitHub Action to auto upload releases to PyPI (:pr:`816`)
* Fixes
* Fix issue with converting to pickle or parquet after adding interesting features (:pr:`798`)
* Changes
Expand All @@ -17,7 +18,7 @@ Changelog
* Refactor test entityset creation to avoid saving to disk (:pr:`813`)

Thanks to the following people for contributing to this release:
:user:`rwedge`, :user:`systemshift`, :user:`frances-h`
:user:`rwedge`, :user:`systemshift`, :user:`frances-h`, :user:`jeff-hernandez`

**v0.12.0 Oct 31, 2019**
* Enhancements
Expand Down