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

19 lines
391 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
if [[ ${CI-} ]]; then
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
fi
download_artifact npm-package ./release
# https://github.com/actions/upload-artifact/issues/38
chmod +x $(grep -rl '^#!/.\+' release)
2020-05-08 07:08:30 +00:00
yarn publish --non-interactive release
}
main "$@"