mirror of
https://github.com/cdr/code-server.git
synced 2025-12-07 00:44:31 +01:00
21 lines
389 B
Bash
Executable file
21 lines
389 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Creates a draft release with the template for the version in package.json
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
source ./ci/lib.sh
|
|
|
|
hub release create \
|
|
--file - \
|
|
--draft "${assets[@]}" "v$(pkg_json_version)" << EOF
|
|
v$(pkg_json_version)
|
|
|
|
VS Code v$(vscode_version)
|
|
|
|
- Summarize changes here with references to issues
|
|
EOF
|
|
}
|
|
|
|
main "$@"
|