We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 297c50b commit ffa5495Copy full SHA for ffa5495
.github/scripts/publish-npm-binary.sh
@@ -55,7 +55,6 @@ fi
55
cp "target/${TARGET}/release/${binary_name}" "${NPM_DIR}/${node_pkg}/bin/"
56
57
# Publish package
58
-cd "${NPM_DIR}/${node_pkg}"
59
-npm publish --access public --dry-run
+npm publish "${NPM_DIR}/${node_pkg}" --access public --dry-run
60
61
echo "Successfully published ${node_pkg}"
.github/workflows/release_npm.yml
@@ -107,6 +107,7 @@ jobs:
107
cd npm/celq
108
yarn install # requires optional dependencies to be present in the registry
109
yarn build
110
- npm publish --access public --dry-run
+ cd ../..
111
+ npm publish npm/celq --access public --dry-run
112
env:
113
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments