[AAE-12123] env var interpolation bugfix

This commit is contained in:
Marco Carrozzo 2023-01-16 09:48:32 +01:00 committed by GitHub
parent 067d4e9369
commit bbee01a809
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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