From 11e34167d2c7c8e6777f57f5471227f875972942 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 16 Aug 2020 11:10:25 -0500 Subject: [PATCH] Adds pypi Github action --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..01b2ef6 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,6 @@ +- name: Publish package to Pypi + if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + uses: pypa/gh-action-pypi-publish@master + with: + user: __token__ + password: ${{ secrets.pypi_password }} \ No newline at end of file