From 499871b9d3bf0a8e74f41e53b9e3699ca6feb6c1 Mon Sep 17 00:00:00 2001 From: Albert Zeyer Date: Tue, 6 Dec 2022 13:11:37 +0100 Subject: [PATCH] CI publish potential fix I get: /app/twine-upload.sh: line 35: twine: command not found https://github.com/pypa/gh-action-pypi-publish/issues/112 --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index af8f9cf2f..f73837b54 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,7 +39,7 @@ jobs: # https://github.com/marketplace/actions/pypi-publish - name: Publish to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 + uses: pypa/gh-action-pypi-publish@release/v1.5 with: user: __token__ password: ${{ secrets.pypi_password }}