Files
zulip/static/shared/tools/npm-version
Greg Price dbe92ebbfe shared: Script up the NPM release process for @zulip/shared.
This will replace about a half-dozen steps of these instructions:
  https://github.com/zulip/zulip-mobile/blob/ec1370159/docs/howto/shared.md#publish

with "run `npm version patch`; then run the commands it prints."
2022-04-25 09:37:35 -07:00

6 lines
145 B
Bash
Executable File

#!/usr/bin/env bash
set -eu -o pipefail
git commit -am "shared: Bump version to ${npm_package_version}"
git tag "shared-${npm_package_version}"