2020-05-11 21:08:22 +00:00
|
|
|
#!/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 - \
|
2020-05-19 01:30:24 +00:00
|
|
|
-t "$(git rev-parse HEAD)" \
|
2020-05-16 14:55:46 +00:00
|
|
|
--draft "${assets[@]}" "v$VERSION" << EOF
|
|
|
|
v$VERSION
|
2020-05-11 21:08:22 +00:00
|
|
|
|
|
|
|
VS Code v$(vscode_version)
|
|
|
|
|
2020-11-16 21:56:53 +00:00
|
|
|
# New Features
|
|
|
|
- ⭐ Summarize new features here with references to issues
|
|
|
|
|
|
|
|
## Bug Fixes
|
|
|
|
- ⭐ Summarize bug fixes here with references to issues
|
|
|
|
|
|
|
|
Cheers! 🍻
|
2020-05-11 21:08:22 +00:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|