feat(node): Fix npm publish task (#298)

This commit is contained in:
gsilvestrin
2023-07-14 13:39:15 -07:00
committed by GitHub
parent 2fdcb307eb
commit aecc5fc42b

View File

@@ -132,6 +132,7 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.LANCEDB_NPM_REGISTRY_TOKEN }}
run: |
for filename in */*.tgz; do
mv */*.tgz .
for filename in *.tgz; do
npm publish $filename
done