From f976f6173b90b01eacf5a5998bfb9adab7a9a895 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Fri, 8 May 2020 15:52:00 -0400 Subject: [PATCH] Adds pypi-publish GitHub Action --- .github/workflows/pypi-publish.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/pypi-publish.yml diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml new file mode 100644 index 0000000000..bb085a32f5 --- /dev/null +++ b/.github/workflows/pypi-publish.yml @@ -0,0 +1,11 @@ +- name: pypi-publish + uses: pypa/gh-action-pypi-publish@v1.1.0 + with: + # PyPI user + user: ${{ secrets.PYPI_USERS}} + # Password for your PyPI user or an access token + password: ${{ secrets.PYPI_PASSWORD}} + # The repository URL to use + repository_url: # optional + # The target directory for distribution + packages_dir: # optional, default is dist \ No newline at end of file