From 76c7b0edbdeb00348b75effab41a0284d8d1efe8 Mon Sep 17 00:00:00 2001 From: fennecJ Date: Fri, 24 Sep 2021 13:34:32 +0800 Subject: [PATCH] Keep workflow running even if no release tag found The action we used to delete the old release somehow cannot find the release tag in forked repo and cause the workflow failed. To solve this issue, simply setting `fail-if-no-release` option to false will do the trick. --- .github/workflows/generate_doc.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/generate_doc.yaml b/.github/workflows/generate_doc.yaml index a6aec8a..5ecd8a8 100644 --- a/.github/workflows/generate_doc.yaml +++ b/.github/workflows/generate_doc.yaml @@ -23,6 +23,7 @@ jobs: with: token: ${{ github.token }} fail-if-no-assets: false + fail-if-no-release: false tag: latest assets: | lkmpg.pdf -- 2.39.5