We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b4e832 commit aa551ebCopy full SHA for aa551eb
1 file changed
.github/workflows/release-v1-beta-core.yml
@@ -1,6 +1,7 @@
1
name: Release CLI Core (v1 Beta)
2
3
on:
4
+ workflow_dispatch:
5
push:
6
branches: [v1-beta]
7
paths:
@@ -35,15 +36,14 @@ jobs:
35
36
prefix: release
37
38
# Core CLI
- - name: Installing dependencies of core
39
+ - name: Install all dependencies
40
id: core-installation
41
if: ${{env.release_releaseAll == 'true' || env.release_plugins_core == 'true'}}
- working-directory: ./packages/contentstack
42
run: pnpm install --frozen-lockfile
43
- - name: Compiling core
+
44
+ - name: Build all packages
45
if: ${{ steps.core-installation.conclusion == 'success' }}
46
- run: pnpm run build
+ run: pnpm -r --sort run build
47
- name: Publishing core (Beta)
48
id: publish-core
49
uses: JS-DevTools/npm-publish@v3
0 commit comments