forked from ungleich-public/cdist
add release notes (for releasing, not the release)
Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
parent
5ca61189d9
commit
a05740ab25
1 changed files with 13 additions and 2 deletions
|
@ -39,12 +39,23 @@ read tagmessage
|
||||||
git tag "$version" -m "$tagmessage"
|
git tag "$version" -m "$tagmessage"
|
||||||
|
|
||||||
# Import into current version branch
|
# Import into current version branch
|
||||||
echo "git merge into $branch"
|
printf "Press enter to git merge into $branch > "
|
||||||
|
read prompt
|
||||||
git checkout $branch
|
git checkout $branch
|
||||||
git merge master
|
git merge master
|
||||||
git checkout master
|
git checkout master
|
||||||
|
|
||||||
# Publish manpages and sourcecode
|
# Publish manpages and sourcecode
|
||||||
echo "publising doc/ and code/"
|
printf "Press enter to publish doc/ and code/ > "
|
||||||
|
read prompt
|
||||||
./build web
|
./build web
|
||||||
./build pub
|
./build pub
|
||||||
|
|
||||||
|
cat << notes
|
||||||
|
To be done manually...
|
||||||
|
|
||||||
|
- freecode release
|
||||||
|
- blog entry
|
||||||
|
- mailinglist update
|
||||||
|
|
||||||
|
notes
|
||||||
|
|
Loading…
Reference in a new issue