diff options
author | Piotr Miller <nwg.piotr@gmail.com> | 2024-05-22 00:27:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-22 00:27:22 +0200 |
commit | 1790938952698b1573eacc9cecc79aea22306735 (patch) | |
tree | 6a55b4708810c0d842a673a0a4c407d7798217fb | |
parent | d31aad311cd9280517e429eb397915fb4ff21a40 (diff) | |
parent | a3626f66d703bad6de1bf0edb1ae28a35050c22e (diff) | |
download | autotiling-1790938952698b1573eacc9cecc79aea22306735.tar.gz |
Merge pull request #56 from Syphdias/update-github-actions
Update actions versions and ingore existing PyPI versions
-rw-r--r-- | .github/workflows/python-publish.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 4b17374..4237430 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -16,9 +16,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: '3.x' - name: Install dependencies @@ -28,7 +28,8 @@ jobs: - name: Build package run: python -m build - name: Publish package - uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 + uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} + skip-existing: true |