22 lines
537 B
Bash
22 lines
537 B
Bash
|
#!/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
|
||
|
local assets=(./release-packages/*)
|
||
|
for i in "${!assets[@]}"; do
|
||
|
assets[$i]="--attach=${assets[$i]}"
|
||
|
done
|
||
|
EDITOR=true hub release edit --draft "${assets[@]}" "v$(pkg_json_version)"
|
||
|
}
|
||
|
|
||
|
main "$@"
|