From d1b54b54c85d7594cd270e0adb70e74a44de0736 Mon Sep 17 00:00:00 2001 From: Ben Mares Date: Sun, 17 Dec 2023 16:33:46 -0800 Subject: [PATCH] Delete old lockfiles Otherwise it will give an error that the artifacts already exist. --- .github/workflows/update-lockfile.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/update-lockfile.yml b/.github/workflows/update-lockfile.yml index 0d93067d..0d51ad21 100644 --- a/.github/workflows/update-lockfile.yml +++ b/.github/workflows/update-lockfile.yml @@ -47,6 +47,9 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v4 + - name: Delete old lockfiles + run: | + rm -f conda/conda-lock-*.yaml - name: Download all lockfiles uses: actions/download-artifact@v2 with: