Browse Source

fix: add owner to gh commands [skip ci]

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

+ 3 - 3
release.sh

@@ -20,7 +20,7 @@ npm install -g github-release-cli
 
 
 if [[ $( gh release view "${RELEASE_VERSION}" 2>&1 ) =~ "release not found" ]]; then
 if [[ $( gh release view "${RELEASE_VERSION}" 2>&1 ) =~ "release not found" ]]; then
   echo "Creating release '${RELEASE_VERSION}'"
   echo "Creating release '${RELEASE_VERSION}'"
-  gh release create --repo "${REPOSITORY}" "${RELEASE_VERSION}"
+  gh release create --repo "${OWNER}/${REPOSITORY}" "${RELEASE_VERSION}"
 fi
 fi
 
 
 cd artifacts
 cd artifacts
@@ -31,7 +31,7 @@ for FILE in *
 do
 do
   if [[ -f "${FILE}" ]] && [[ "${FILE}" != *.sha1 ]] && [[ "${FILE}" != *.sha256 ]]; then
   if [[ -f "${FILE}" ]] && [[ "${FILE}" != *.sha1 ]] && [[ "${FILE}" != *.sha256 ]]; then
     echo "::group::Uploading '${FILE}' at $( date "+%T" )"
     echo "::group::Uploading '${FILE}' at $( date "+%T" )"
-    gh release upload --repo "${REPOSITORY}" "${RELEASE_VERSION}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
+    gh release upload --repo "${OWNER}/${REPOSITORY}" "${RELEASE_VERSION}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
 
 
     EXIT_STATUS=$?
     EXIT_STATUS=$?
     echo "exit: ${EXIT_STATUS}"
     echo "exit: ${EXIT_STATUS}"
@@ -44,7 +44,7 @@ do
         sleep $(( 15 * (i + 1)))
         sleep $(( 15 * (i + 1)))
 
 
         echo "RE-Uploading '${FILE}' at $( date "+%T" )"
         echo "RE-Uploading '${FILE}' at $( date "+%T" )"
-        gh release upload --repo "${REPOSITORY}" "${RELEASE_VERSION}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
+        gh release upload --repo "${OWNER}/${REPOSITORY}" "${RELEASE_VERSION}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
 
 
         EXIT_STATUS=$?
         EXIT_STATUS=$?
         echo "exit: ${EXIT_STATUS}"
         echo "exit: ${EXIT_STATUS}"