
#!/bin/sh

set -e

pnpm i --frozen-lockfile

pnpm build

npm publish --access public --registry ${REGISTRY}
cd -

echo "Publish completed"
