We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d88144a commit 9f44327Copy full SHA for 9f44327
.buildkite/deploy.sh
@@ -5,13 +5,10 @@ set -euo pipefail
5
TAG_VERSION=$(buildkite-agent meta-data get "tag-version" --default "0.0.0-alpha-$(date +%Y%m%d%H%M%S)")
6
TAG_VERSION=${TAG_VERSION/v/}
7
8
-#setup git
9
-# git config user.email "Widen Developers"
10
-# git config user.name "[email protected]"
11
12
# Publish the package
13
echo "publishing ${TAG_VERSION}"
14
-npm publish --tag ${TAG_VERSION}
+npm publish --tag tag-${TAG_VERSION}
15
echo "versioning package ${TAG_VERSION}"
16
npm version ${TAG_VERSION} --no-git-tag-version
17
0 commit comments