From a23c676a4d968a07032342f2ff6d056c1c2cc7af Mon Sep 17 00:00:00 2001 From: appleb_m Date: Mon, 5 Jan 2026 13:01:02 +0100 Subject: [PATCH] Add --skip-exisiting to workflow to prevent conflicts --- .gitea/workflows/action.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/action.yaml b/.gitea/workflows/action.yaml index d092aeb8..167ea578 100644 --- a/.gitea/workflows/action.yaml +++ b/.gitea/workflows/action.yaml @@ -60,7 +60,9 @@ jobs: TWINE_PASSWORD: ${{ secrets.PIP_REPOSITORY_API_TOKEN }} # Use the secret for authentication run: | source venv/bin/activate - twine upload --repository-url https://gitea.psi.ch/api/packages/mx/pypi dist/* + twine upload --repository-url https://gitea.psi.ch/api/packages/mx/pypi \ + --skip-existing \ + dist/* docs: name: Build and Deploy Docs