From 4135742741c6ba5016f7c286f71c328008923f51 Mon Sep 17 00:00:00 2001 From: David Farrington Date: Sat, 23 Mar 2024 10:07:42 +0000 Subject: [PATCH] Dont fail build on test pypi publish --- .github/workflows/pre-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 78fb3b75..7adf0cca 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -22,4 +22,4 @@ jobs: - name: Deploy to testpypi.org run: | poetry config repositories.test_pypi https://test.pypi.org/legacy/ - poetry publish --build -r test_pypi --username __token__ --password ${{ secrets.TEST_PYPI_TOKEN }} + poetry publish --build -r test_pypi --username __token__ --password ${{ secrets.TEST_PYPI_TOKEN }} || true