Skip to content

Commit

Permalink
Keep workflow running even if no release tag found
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fennecJ committed Sep 24, 2021
1 parent 0d5ac2a commit 76c7b0e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/generate_doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
with:
token: ${{ github.token }}
fail-if-no-assets: false
fail-if-no-release: false
tag: latest
assets: |
lkmpg.pdf
Expand Down

0 comments on commit 76c7b0e

Please sign in to comment.