From 49e45d311a05e0574cfc8134550bcc2d77633e26 Mon Sep 17 00:00:00 2001 From: Sebastien Date: Sun, 5 Jun 2022 19:46:54 +0200 Subject: [PATCH 1/3] Update python-publish.yml --- .github/workflows/python-publish.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index ec70354..23161e5 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -32,8 +32,15 @@ jobs: pip install build - name: Build package run: python -m build - - name: Publish package - uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 + - name: Publish distribution to Test PyPI + uses: pypa/gh-action-pypi-publish@master + with: + user: __token__ + password: ${{ secrets.TEST_PYPI_API_TOKEN }} + repository_url: https://test.pypi.org/legacy/ + - name: Publish distribution to PyPI + if: startsWith(github.ref, 'refs/tags') + uses: pypa/gh-action-pypi-publish@master with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} From 11265c4f4d98adaa5676e417bc0206cb243694a1 Mon Sep 17 00:00:00 2001 From: Sebastien Date: Sun, 5 Jun 2022 19:48:03 +0200 Subject: [PATCH 2/3] Update python-python-publish.yml --- .github/workflows/python-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 23161e5..1eea3ea 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@master - name: Set up Python uses: actions/setup-python@v3 with: From dd05509c2f8772bc0dcf0fde16063783c234d35e Mon Sep 17 00:00:00 2001 From: Sebastien Date: Sun, 5 Jun 2022 19:48:42 +0200 Subject: [PATCH 3/3] Update _version.py --- exotx/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exotx/_version.py b/exotx/_version.py index 493f741..6a9beea 100644 --- a/exotx/_version.py +++ b/exotx/_version.py @@ -1 +1 @@ -__version__ = "0.3.0" +__version__ = "0.4.0"