mirror of https://github.com/pulumi/pulumi.git
68 lines
2.4 KiB
Bash
Executable File
68 lines
2.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# publish_npm.sh uploads our packages to npm
|
|
set -o nounset
|
|
set -o errexit
|
|
set -o pipefail
|
|
readonly ROOT=$(dirname "${0}")/..
|
|
|
|
if [[ "${TRAVIS_PUBLISH_PACKAGES:-}" == "true" ]]; then
|
|
echo "Publishing NPM package to NPMjs.com:"
|
|
NPM_TAG="dev"
|
|
|
|
## We need split the GITHUB_REF into the correct parts
|
|
## so that we can test for NPM Tags
|
|
IFS='/' read -ra my_array <<< "${GITHUB_REF:-}"
|
|
BRANCH_NAME="${my_array[2]}"
|
|
|
|
echo $BRANCH_NAME
|
|
if [[ "${BRANCH_NAME}" == features/* ]]; then
|
|
NPM_TAG=$(echo "${BRANCH_NAME}" | sed -e 's|^features/|feature-|g')
|
|
fi
|
|
|
|
if [[ "${BRANCH_NAME}" == feature-* ]]; then
|
|
NPM_TAG=$(echo "${BRANCH_NAME}")
|
|
fi
|
|
|
|
PKG_NAME=$(jq -r .name < "${ROOT}/sdk/nodejs/bin/package.json")
|
|
PKG_VERSION=$(jq -r .version < "${ROOT}/sdk/nodejs/bin/package.json")
|
|
|
|
# If the package doesn't have an alpha tag, use the tag of latest instead of
|
|
# dev. NPM uses this tag as the default version to add, so we want it to mean
|
|
# the newest released version.
|
|
if [[ "${PKG_VERSION}" != *-alpha* ]]; then
|
|
NPM_TAG="latest"
|
|
fi
|
|
|
|
# we need to set explicit beta and rc tags to ensure that we don't mutate to use the latest tag
|
|
if [[ "${PKG_VERSION}" == *-beta* ]]; then
|
|
NPM_TAG="beta"
|
|
fi
|
|
|
|
if [[ "${PKG_VERSION}" == *-rc* ]]; then
|
|
NPM_TAG="rc"
|
|
fi
|
|
|
|
# Now, perform the publish. The logic here is a little goofy because npm provides
|
|
# no way to say "if the package already exists, don't fail" but we want these
|
|
# semantics (so, for example, we can restart builds which may have failed after
|
|
# publishing, or so two builds can run concurrently, which is the case for when we
|
|
# tag master right after pushing a new commit and the push and tag travis jobs both
|
|
# get the same version.
|
|
#
|
|
# We exploit the fact that `npm info <package-name>@<package-version>` has no output
|
|
# when the package does not exist.
|
|
pushd "${ROOT}/sdk/nodejs/bin"
|
|
if [ "$(npm info ${PKG_NAME}@${PKG_VERSION})" == "" ]; then
|
|
if ! npm publish -tag "${NPM_TAG}"; then
|
|
# if we get here, we have a TOCTOU issue, so check again
|
|
# to see if it published. If it didn't bail out.
|
|
if [ "$(npm info ${PKG_NAME}@${PKG_VERSION})" == "" ]; then
|
|
echo "NPM publishing failed, aborting"
|
|
exit 1
|
|
fi
|
|
fi
|
|
fi
|
|
npm info 2>/dev/null
|
|
popd
|
|
fi
|