be032cf735
Closes many issues that I'll prune after adding more docs for users.
12 lines
221 B
Bash
Executable File
12 lines
221 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
|
|
./ci/container/exec.sh yarn publish --non-interactive release
|
|
}
|
|
|
|
main "$@"
|