From 8dadbab7a17504a0cb6b4c4ba712d14228b5ce53 Mon Sep 17 00:00:00 2001 From: Jeff Hernandez <12969559+jeff-hernandez@users.noreply.github.com> Date: Mon, 18 Nov 2019 16:03:00 -0600 Subject: [PATCH 1/2] github action --- .github/workflows/release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000000..4c7d2cb82c --- /dev/null +++ b/.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 }} \ No newline at end of file From acdd8976f2d984f2834e4416f014b1f2f348dbcd Mon Sep 17 00:00:00 2001 From: Jeff Hernandez <12969559+jeff-hernandez@users.noreply.github.com> Date: Mon, 18 Nov 2019 16:08:30 -0600 Subject: [PATCH 2/2] changelog update --- docs/source/changelog.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index f72b0bbc27..bc3b26167f 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -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 @@ -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