blob: 0abe321814a109ec6c043103f2b45f1086d06210 [file] [log] [blame] [edit]
#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
# Set by GH actions, see
# https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables
readonly TAG=$1
# The prefix is chosen to match what GitHub generates for source archives.
# This guarantees that users can easily switch from a released artifact to a source archive
# with minimal differences in their code (e.g. strip_prefix remains the same)
readonly PREFIX="protobuf_javascript-${TAG}"
readonly ARCHIVE="${PREFIX}.tar.gz"
# NB: configuration for 'git archive' is in /.gitattributes
git archive --format=tar --prefix=${PREFIX}/ ${TAG} | gzip > $ARCHIVE
SHA=$(shasum -a 256 $ARCHIVE | awk '{print $1}')
# The stdout of this program will be used as the top of the release notes for this release.
cat << EOF
## Using bzlmod with Bazel 7 or later:
Add to your \`MODULE.bazel\` file:
\`\`\`starlark
bazel_dep(name = "protobuf_javascript", version = "${TAG}")
\`\`\`
EOF