File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 2424 registry-url : ' https://registry.npmjs.org'
2525
2626 - name : Update npm
27- run : npm install -g npm@latest pnpm
27+ run : npm install -g npm@latest
2828
2929 - name : Extract version from tag
3030 id : tag_version
@@ -36,18 +36,17 @@ jobs:
3636 echo "Extracted version: $VERSION from tag: $TAG_NAME"
3737
3838 - name : Install dependencies
39- run : pnpm install
39+ run : npm install
4040
4141 - name : Build workspaces
42- run : pnpm run build
42+ run : npm run build
4343
4444 - name : Publish packages
4545 run : |
4646 VERSION="${{ steps.tag_version.outputs.version }}"
4747 IS_STABLE=$(echo "$VERSION" | grep -Eq '^[0-9]+\.[0-9]+\.[0-9]+$' && echo true || echo false)
4848
4949 echo "Publishing... $IS_STABLE"
50- cd packages/cli
5150 if [ "$IS_STABLE" = "true" ]; then
5251 npm publish --provenance --access public
5352 else
You can’t perform that action at this time.
0 commit comments