Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
code-server/ci/build/release-github-assets.sh

29 lines
818 B
Bash
Raw Normal View History

2020-05-11 23:08:22 +02:00
#!/usr/bin/env bash
set -euo pipefail
# Downloads the release artifacts from CI for the current
# commit and then uploads them to the release with the version
# in package.json.
# You will need $GITHUB_TOKEN set.
main() {
cd "$(dirname "$0")/../.."
source ./ci/lib.sh
source ./ci/steps/steps-lib.sh
# NOTE@jsjoeio - only needed if we use the download_artifact
# because we talk to the GitHub API.
# Needed to use GitHub API
if ! is_env_var_set "GITHUB_TOKEN"; then
echo "GITHUB_TOKEN is not set. Cannot download npm release-packages without GitHub credentials."
exit 1
fi
2020-05-11 23:08:22 +02:00
download_artifact release-packages ./release-packages
2020-10-12 08:09:48 +02:00
local assets=(./release-packages/code-server*"$VERSION"*{.tar.gz,.deb,.rpm})
2021-05-10 23:24:13 +02:00
EDITOR=true gh release upload "v$VERSION" "${assets[@]}" --clobber
2020-05-11 23:08:22 +02:00
}
main "$@"