Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
joephela committed Jan 18, 2024
1 parent bbcc6c3 commit 1af91c8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .buildkite/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ set -euo pipefail

# Get the tag version from Buildkite or default to a pre-release tag
TAG_VERSION=$(buildkite-agent meta-data get "tag-version" --default "0.0.0-alpha-$(date +%Y%m%d%H%M%S)")
TAG_VERSION=$(TAG_VERSION/v/)
TAG_VERSION=${TAG_VERSION/v/}

#setup git
# git config user.email "Widen Developers"
# git config user.name "[email protected]"

# Publish the package
echo "publishing ${TAG_VERSION}"
npm publish --tag ${TAG_VERSION}
npm version ${TAG_VERSION} --no-git-tag-version

Expand Down

0 comments on commit 1af91c8

Please sign in to comment.