diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-11-26 19:39:10 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-11-26 19:39:10 +0530 |
commit | 796da85e3ae062ce4c4c4ca0bac508496335b67e (patch) | |
tree | e51d733ba4f4b9d58938dbd22a87c023b989e9d3 /scripts | |
parent | c89e9250c280ea58b5702644a323cf9b321d1bb0 (diff) |
fix(ci): fix snapshot deploys
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/deploy-snapshot.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/deploy-snapshot.sh b/scripts/deploy-snapshot.sh index 7bae493c..d3da83dc 100755 --- a/scripts/deploy-snapshot.sh +++ b/scripts/deploy-snapshot.sh @@ -19,7 +19,7 @@ function overwrite_remote_tag() { } function has_release() { - gh release view "${LATEST_TAG}" + gh release view "${LATEST_TAG}" &>/dev/null echo "$?" } |