From 1ff66632559f8cf5cb6495a72a7dce8de6ad1ea5 Mon Sep 17 00:00:00 2001 From: James Tocknell Date: Sun, 15 Dec 2024 14:09:47 +1100 Subject: [PATCH] Skip release uploads if file exists This means we don't need to do extra work to check scikits-odes-daepack if we don't change it. --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1297a8..261656c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,3 +34,7 @@ jobs: - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 + with: + skip-existing: true + verbose: true + print-hash: true