code-server-2/ci/build/release-github-assets.sh

22 lines
572 B
Bash
Raw Normal View History

2020-05-11 21:08:22 +00: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
download_artifact release-packages ./release-packages
2020-06-04 20:31:01 +00:00
local assets=(./release-packages/code-server*"$VERSION"*{.tar.gz,.zip,.deb,.rpm})
2020-05-11 21:08:22 +00:00
for i in "${!assets[@]}"; do
assets[$i]="--attach=${assets[$i]}"
done
EDITOR=true hub release edit --draft "${assets[@]}" "v$VERSION"
2020-05-11 21:08:22 +00:00
}
main "$@"