1
0
mirror of https://github.com/coder/code-server.git synced 2024-12-05 07:13:06 +08:00
code-server/ci/steps/publish-npm.sh

17 lines
293 B
Bash
Raw Normal View History

2020-05-08 15:08:30 +08:00
#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
2020-05-12 05:08:22 +08:00
source ./ci/lib.sh
2020-05-08 15:08:30 +08:00
if [[ ${CI-} ]]; then
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
fi
download_artifact npm-package ./release
yarn publish --non-interactive release
}
main "$@"