code-server-2/ci/steps/publish-npm.sh

31 lines
804 B
Bash
Raw Normal View History

2020-05-08 07:08:30 +00:00
#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
2020-05-11 21:08:22 +00:00
source ./ci/lib.sh
2020-05-08 07:08:30 +00:00
# npm view won't exit with non-zero so we have to check the output.
local hasVersion
hasVersion=$(npm view "code-server@$VERSION" version)
if [[ $hasVersion == "$VERSION" ]]; then
echo "$VERSION is already published"
return
fi
2020-05-08 07:08:30 +00:00
if [[ ${CI-} ]]; then
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
2020-05-08 07:08:30 +00:00
fi
download_artifact npm-package ./release-npm-package
# https://github.com/actions/upload-artifact/issues/38
tar -xzf release-npm-package/package.tar.gz
2021-08-11 17:01:15 +00:00
# Ignore symlink when publishing npm package
# See: https://github.com/cdr/code-server/pull/3935
echo "node_modules.asar" > release/.npmignore
2020-05-08 07:08:30 +00:00
yarn publish --non-interactive release
}
main "$@"