Skip to content

Commit bcc5725

Browse files
committed
ci: Don't fail when the slower CI run attempts to create a release
We have two CI tasks competing to create the release. It's fine for the slower one to fail because the release has already been created, it will continue and upload the artefacts.
1 parent 0fb037e commit bcc5725

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

run-release.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ echo "==> Creating $tag release"
2424
run github-release release \
2525
--user $user \
2626
--repo $repo \
27-
--tag $tag
27+
--tag $tag \
28+
|| true
2829

2930
function upload() {
3031
file=$1

0 commit comments

Comments
 (0)