From 618503ccf273665d450c41003769a1644050c827 Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Fri, 22 Dec 2023 19:10:28 -0500 Subject: [PATCH] [O] Ignore non-existent release --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 43af3426..be843ec1 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -39,7 +39,7 @@ jobs: - name: Delete previous nightly release run: | - gh release delete --cleanup-tag --yes --repo $GITHUB_REPOSITORY nightly + gh release delete --cleanup-tag --yes --repo $GITHUB_REPOSITORY nightly || true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}