mirror of
https://github.com/zulip/zulip.git
synced 2025-11-13 02:17:19 +00:00
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."
6 lines
145 B
Bash
Executable File
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}"
|