1
2
3
4
5
6
7
8
9
10
|
# Edited before every release, then:
# ./01-release.tag.sh make check, commit, push, tag, push the tag
# (pushing the tag starts .github/workflows/release.yml, which builds the
# binaries with ./02-build-releases.sh and publishes the release with them —
# no personal token is needed, and nothing else has to be run)
#
# ./02-build-releases.sh v1.0.0 to build the binaries by hand and see what
# the CI will publish, without publishing anything
TAG="v1.0.3"
ABOUT="Turbo MoonBit"
|