Publish from GitHub Actions (#30288)

* Publish from GitHub Actions

* Break out instructions into release train issue template
This commit is contained in:
Arnout Engelen 2021-06-08 09:05:16 +02:00 committed by GitHub
parent 2c524f110f
commit 39b4a5c57a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 129 additions and 293 deletions

View file

@ -0,0 +1,10 @@
#!/bin/bash
VERSION=$1
if [ -z $VERSION ]
then
echo specify the version name to be released, eg. 1.0.0
else
sed -e 's/\$VERSION\$/'$VERSION'/g' scripts/release-train-issue-template$2.md > /tmp/release-$VERSION.md
echo Created $(hub issue create -F /tmp/release-$VERSION.md --browse)
fi