ci: remove publish job (#5135)

This commit is contained in:
LongYinan
2023-11-30 04:24:43 +00:00
parent 3e662f358d
commit 99f98fb9d3
2 changed files with 0 additions and 186 deletions
-21
View File
@@ -1,21 +0,0 @@
#!/bin/bash
packages=(
"y-indexeddb"
"y-provider"
"infra"
"sdk"
)
for package in "${packages[@]}"; do
yarn nx build $package
cd "packages/common/$package"
if [ "$NIGHTLY" = "true" ]; then
yarn npm publish --no-git-checks --tag nightly
else
yarn npm publish
fi
cd ../../../
done