vscodium/release.sh

63 lines
1.4 KiB
Bash
Raw Normal View History

2021-10-01 16:47:10 +00:00
#!/bin/bash
set -e
2021-11-10 09:13:12 +00:00
if [[ -z "${GITHUB_TOKEN}" ]]; then
echo "Will not release because no GITHUB_TOKEN defined"
2021-10-01 16:47:10 +00:00
exit
fi
2021-11-10 09:13:12 +00:00
npm install -g github-release-cli
2021-10-01 16:47:10 +00:00
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
2021-11-06 11:26:36 +00:00
set +e
2021-10-01 16:47:10 +00:00
for FILE in *
do
if [[ -f "${FILE}" ]] && [[ "${FILE}" != *.sha1 ]] && [[ "${FILE}" != *.sha256 ]]; then
2021-11-12 01:14:13 +00:00
echo "::group::Uploading '${FILE}' at $( date "+%T" )"
2021-11-10 09:40:20 +00:00
gh release upload "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
2021-11-06 11:03:44 +00:00
2021-11-10 10:52:44 +00:00
EXIT_STATUS=$?
echo "exit: $EXIT_STATUS"
2021-11-12 01:14:13 +00:00
if (( $EXIT_STATUS )); then
for (( i=0; i<10; i++ ))
2021-11-06 11:03:44 +00:00
do
2022-02-15 12:03:01 +00:00
github-release delete --owner "${GITHUB_REPOSITORY_OWNER}" --repo vscodium --tag "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
2021-11-10 09:13:12 +00:00
sleep $(( 15 * (i + 1)))
2021-11-10 09:13:12 +00:00
echo "RE-Uploading '${FILE}' at $( date "+%T" )"
2021-11-10 09:40:20 +00:00
gh release upload "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
EXIT_STATUS=$?
2021-11-10 09:13:12 +00:00
echo "exit: $EXIT_STATUS"
2021-11-06 11:03:44 +00:00
2021-11-10 09:13:12 +00:00
if ! (( $EXIT_STATUS )); then
2021-11-06 11:03:44 +00:00
break
fi
done
2021-11-10 09:13:12 +00:00
echo "exit: $EXIT_STATUS"
2021-11-10 09:13:12 +00:00
if (( $EXIT_STATUS )); then
echo "'${FILE}' hasn't been uploaded!"
2021-11-10 09:13:12 +00:00
2022-02-15 12:03:01 +00:00
github-release delete --owner "${GITHUB_REPOSITORY_OWNER}" --repo vscodium --tag "${MS_TAG}" "${FILE}" "${FILE}.sha1" "${FILE}.sha256"
2021-11-10 09:13:12 +00:00
exit 1
fi
2021-11-06 11:03:44 +00:00
fi
2021-11-12 01:14:13 +00:00
echo "::endgroup::"
2021-10-01 16:47:10 +00:00
fi
done
cd ..