Browse Source

fix: don't recreate release [skip ci]

Baptiste Augrain 3 years ago
parent
commit
a549e0bdad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      release.sh

+ 1 - 1
release.sh

@@ -18,7 +18,7 @@ fi
 
 npm install -g github-release-cli
 
-if [[ $( gh release view "${RELEASE_VERSION}" 2>&1 ) =~ "release not found" ]]; then
+if [[ $( gh release view --repo "${OWNER}/${REPOSITORY}" "${RELEASE_VERSION}" 2>&1 ) =~ "release not found" ]]; then
   echo "Creating release '${RELEASE_VERSION}'"
   gh release create --repo "${OWNER}/${REPOSITORY}" "${RELEASE_VERSION}"
 fi