123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #!/bin/bash
- set -e
- if [[ -z "${GITHUB_TOKEN}" ]]; then
- echo "Will not release because no GITHUB_TOKEN defined"
- exit
- fi
- npm install -g github-release-cli
- if [[ $( gh release view "${MS_TAG}" 2>&1 ) =~ "release not found" ]]; then
- echo "Creating release '${MS_TAG}'"
- gh release create "${MS_TAG}"
- fi
- cd artifacts
- set +e
- for FILE in *
- do
- if [[ -f "${FILE}" ]] && [[ "${FILE}" != *.sha1 ]] && [[ "${FILE}" != *.sha256 ]]; then
- echo "Uploading '${FILE}' at $( date "+%T" )"
- gh release upload "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
- EXIT_STATUS=$?
- echo "exit: $EXIT_STATUS"
- if ! (( $EXIT_STATUS )); then
- for (( i=0; i<10; i++ ))
- do
- github-release delete --owner VSCodium --repo vscodium --tag "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
- sleep $(( 15 * (i + 1)))
- echo "RE-Uploading '${FILE}' at $( date "+%T" )"
- gh release upload "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
- EXIT_STATUS=$?
- echo "exit: $EXIT_STATUS"
- if ! (( $EXIT_STATUS )); then
- break
- fi
- done
- echo "exit: $EXIT_STATUS"
- if (( $EXIT_STATUS )); then
- echo "'${FILE}' hasn't been uploaded!"
- github-release delete --owner VSCodium --repo vscodium --tag "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
- exit 1
- fi
- fi
- fi
- done
- cd ..
|