You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
474 B
23 lines
474 B
#!/bin/bash
|
|
|
|
# Force start from root folder
|
|
cd "$(dirname "$0")/.."
|
|
|
|
set -e
|
|
|
|
version=$VERSION
|
|
distTag=$DIST_TAG
|
|
|
|
if [[ -z "$version" ]]; then
|
|
echo "Please enter the version you want to publish"
|
|
read -r version
|
|
fi
|
|
|
|
if [[ -z "$distTag" ]]; then
|
|
echo "Please enter the dist-tag you want to publish with"
|
|
read -r distTag
|
|
fi
|
|
|
|
## publish packages
|
|
yarn release --version "$version" --tag "$distTag" --git-commit false --git-tag false --changelog false --dry-run false "$@"
|