19 lines
390 B
Bash
Executable File
19 lines
390 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
source ./ci/lib.sh
|
|
|
|
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)
|
|
yarn publish --non-interactive release
|
|
}
|
|
|
|
main "$@"
|