mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 06:53:25 +00:00
9 lines
209 B
Bash
Executable File
9 lines
209 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eu -o pipefail
|
|
|
|
# expect this to run as NPM script
|
|
: "${npm_package_version?}"
|
|
|
|
git commit -am "shared: Bump version to ${npm_package_version}"
|
|
git tag "shared-${npm_package_version}"
|