mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
36 lines
803 B
Bash
Executable File
36 lines
803 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
cd $DIR/../../../
|
|
|
|
VERSION_IN_PACKAGE_JSON=`node -p "require('./package.json')".version;`;
|
|
|
|
if [[ $TRAVIS_BRANCH =~ ^master(-patch.*)?$ ]]
|
|
then
|
|
# Pre-release versions
|
|
if [[ $VERSION_IN_PACKAGE_JSON =~ ^[0-9]*\.[0-9]*\.[0-9]*-A\.[0-9]*$ ]];
|
|
then
|
|
TAG_NPM=next
|
|
# Stable major versions
|
|
else
|
|
TAG_NPM=latest
|
|
fi
|
|
fi
|
|
|
|
if [[ $TRAVIS_BRANCH =~ ^develop(-patch.*)?$ ]]
|
|
then
|
|
TAG_NPM=alpha
|
|
fi
|
|
|
|
if [[ -n "$GITHUB_ACTIONS" ]]; then
|
|
TAG_NPM=test
|
|
fi
|
|
echo "Publishing on npm with tag $TAG_NPM"
|
|
./node_modules/@alfresco/adf-cli/bin/adf-cli npm-publish \
|
|
--npmRegistry $NPM_REGISTRY_ADDRESS \
|
|
--tokenRegistry $NPM_REGISTRY_TOKEN \
|
|
--tag $TAG_NPM \
|
|
--pathProject "$(pwd)" \
|
|
"$@"
|