1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-07-05 20:53:12 +00:00
foris-js/scripts/publish.sh

25 lines
666 B
Bash
Raw Normal View History

2019-10-07 14:43:57 +00:00
#!/bin/sh
if test -z "$NPM_TOKEN"
then
echo "\$NPM_TOKEN is not set"
exit 1
else
2019-11-01 09:49:45 +00:00
cd dist
2019-10-30 16:06:53 +00:00
# Need to replace "_" with "-" as GitLab CI won't accept secret vars with "-"
2019-10-15 08:10:33 +00:00
echo "//registry.npmjs.org/:_authToken=$(echo "$NPM_TOKEN" | tr _ -)" > .npmrc
2019-10-07 14:43:57 +00:00
echo "unsafe-perm = true" >> ~/.npmrc
if test "$1" = "beta"
then
2019-10-11 08:15:53 +00:00
BETA_VERSION=$(npx -c 'echo "$npm_package_version"')-beta.$CI_COMMIT_SHORT_SHA
2019-10-15 08:10:33 +00:00
npm version "$BETA_VERSION" --git-tag-version false
2019-11-01 09:49:45 +00:00
npm publish --tag beta
2019-10-07 14:43:57 +00:00
elif test "$1" = "latest"
then
2019-11-01 09:49:45 +00:00
npm publish
2019-10-07 14:43:57 +00:00
else
echo "Usage: publish.sh [ beta | latest ]"
exit 1
fi
fi