fix: don't recreate release [skip ci]
This commit is contained in:
parent
04f80fcd48
commit
a549e0bdad
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ fi
|
||||||
|
|
||||||
npm install -g github-release-cli
|
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}'"
|
echo "Creating release '${RELEASE_VERSION}'"
|
||||||
gh release create --repo "${OWNER}/${REPOSITORY}" "${RELEASE_VERSION}"
|
gh release create --repo "${OWNER}/${REPOSITORY}" "${RELEASE_VERSION}"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue