Skip to content

Commit

Permalink
scripts/release: Improve instructions after building all platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
dubek committed Dec 27, 2021
1 parent 726f56f commit 8351601
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions scripts/release
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,16 @@ for os in linux darwin windows ; do
else
(cd release && zip -qr $releasename.zip $releasename)
fi
rm -r release/$releasename
done
done

echo "Done, see files in the 'release' directory."
echo
echo "Don't forget to tag: git tag -a $VERSION -m 'Release $VERSION' && git push --tags"
cat <<EOF
Done, see files in the 'release' directory.
Now tag and create a Github release:
git tag -a $VERSION -m 'Release $VERSION'
git push --tags
gh release create $VERSION --title "$VERSION" release/*
EOF

0 comments on commit 8351601

Please sign in to comment.