From 76457601a3ef0833f2b7f144aab4cf7e376989b8 Mon Sep 17 00:00:00 2001 From: th0114nd <1399455+th0114nd@users.noreply.github.com> Date: Thu, 20 Feb 2020 16:56:55 -0500 Subject: [PATCH] Add Github action for release From looking at the release page and https://pypi.org/project/flytekit/#history, it doesn't seem like there's a perfect fit between releases made on github and published. This should automate that process. Can you please help me by setting the secrets? https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets --- .github/workflows/pythonpublish.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/pythonpublish.yml diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml new file mode 100644 index 0000000000..b143a53098 --- /dev/null +++ b/.github/workflows/pythonpublish.yml @@ -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/*