This commit is contained in:
Marco Carrozzo
2023-01-13 17:42:54 +01:00
parent db38ccda7a
commit ecc0e8615e

View File

@@ -31,11 +31,11 @@ runs:
EVENT_TYPE="api"; EVENT_TYPE="api";
fi fi
if [[ GITHUB_REF_NAME == "master" ]]; then if [[ $GITHUB_REF_NAME == "master" ]]; then
echo "Set up TAG_NPM to latest on master branch" echo "Set up TAG_NPM to latest on master branch"
TAG_NPM="latest" TAG_NPM="latest"
fi fi
if [[ GITHUB_REF_NAME == "develop" ]]; then if [[ $GITHUB_REF_NAME == "develop" ]]; then
echo "Set up TAG_NPM to alpha on develop branch" echo "Set up TAG_NPM to alpha on develop branch"
TAG_NPM="alpha" TAG_NPM="alpha"
fi fi