Skip to content

Commit 04bc115

Browse files
committed
updated code release yml
1 parent 6e0bdc7 commit 04bc115

File tree

4 files changed

+185
-171
lines changed

4 files changed

+185
-171
lines changed

.github/workflows/release-v1-beta-core.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
- name: Install pnpm
2525
run: corepack prepare pnpm@10.28.0 --activate
2626

27-
- name: Install root dependencies
28-
run: pnpm install
27+
- name: Clean the repository
28+
run: pnpm run clean:all
2929

3030
- name: Reading Configuration
3131
id: release_config
@@ -39,11 +39,11 @@ jobs:
3939
id: core-installation
4040
if: ${{env.release_releaseAll == 'true' || env.release_plugins_core == 'true'}}
4141
working-directory: ./packages/contentstack
42-
run: npm install
42+
run: pnpm install --frozen-lockfile
4343
- name: Compiling core
4444
if: ${{ steps.core-installation.conclusion == 'success' }}
4545
working-directory: ./packages/contentstack
46-
run: npm run prepack
46+
run: pnpm run build
4747
- name: Publishing core (Beta)
4848
id: publish-core
4949
uses: JS-DevTools/npm-publish@v3

.talismanrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ fileignoreconfig:
22
- filename: package-lock.json
33
checksum: c91b9e5fba1c84c0b6de15ad2f8cce698a5c781c9db31bebb7a3ad63ee88d9e1
44
- filename: pnpm-lock.yaml
5-
checksum: cd3f55a64a28b62847a9519afe256177012e2e57a9dd17268b6aa3dcd95c92f7
5+
checksum: 93f587bdb40e90560278654d116ca15ac901abfbfc666f82cddb53eac212eebe
66
- filename: packages/contentstack-bootstrap/src/bootstrap/utils.ts
77
checksum: 6e6fb00bb11b03141e5ad27eeaa4af9718dc30520c3e73970bc208cc0ba2a7d2
88
version: '1.0'

packages/contentstack/package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@contentstack/cli",
33
"description": "Command-line tool (CLI) to interact with Contentstack",
4-
"version": "1.58.1",
4+
"version": "1.60.0-beta.0",
55
"author": "Contentstack",
66
"bin": {
77
"csdx": "./bin/run.js"
88
},
99
"main": "lib/index.js",
1010
"types": "lib/index.d.ts",
1111
"scripts": {
12-
"build": "pnpm compile && oclif manifest",
12+
"build": "pnpm compile && oclif manifest && oclif readme",
1313
"clean": "rm -rf ./lib ./node_modules tsconfig.tsbuildinfo",
1414
"compile": "tsc -b tsconfig.json",
1515
"postpack": "rm -f oclif.manifest.json",
@@ -22,24 +22,24 @@
2222
"prepack": "pnpm compile && oclif manifest && oclif readme"
2323
},
2424
"dependencies": {
25-
"@contentstack/cli-audit": "~1.18.0",
26-
"@contentstack/cli-cm-export": "~1.23.2",
27-
"@contentstack/cli-cm-import": "~1.31.3",
28-
"@contentstack/cli-auth": "~1.7.3",
29-
"@contentstack/cli-cm-bootstrap": "~1.18.4",
30-
"@contentstack/cli-cm-branches": "~1.6.3",
31-
"@contentstack/cli-cm-bulk-publish": "~1.10.7",
32-
"@contentstack/cli-cm-clone": "~1.20.1",
33-
"@contentstack/cli-cm-export-to-csv": "~1.11.0",
34-
"@contentstack/cli-cm-import-setup": "~1.7.3",
25+
"@contentstack/cli-audit": "~1.19.0-beta.0",
26+
"@contentstack/cli-cm-export": "~1.24.0-beta.0",
27+
"@contentstack/cli-cm-import": "~1.32.0-beta.0",
28+
"@contentstack/cli-auth": "~1.8.0-beta.0",
29+
"@contentstack/cli-cm-bootstrap": "~1.19.0-beta.0",
30+
"@contentstack/cli-cm-branches": "~1.7.0-beta.0",
31+
"@contentstack/cli-cm-bulk-publish": "~1.11.0-beta.0",
32+
"@contentstack/cli-cm-clone": "~1.21.0-beta.0",
33+
"@contentstack/cli-cm-export-to-csv": "~1.12.0-beta.0",
34+
"@contentstack/cli-cm-import-setup": "~1.8.0-beta.0",
3535
"@contentstack/cli-cm-migrate-rte": "~1.6.4",
36-
"@contentstack/cli-cm-seed": "~1.14.3",
37-
"@contentstack/cli-command": "~1.7.2",
38-
"@contentstack/cli-config": "~1.19.0",
36+
"@contentstack/cli-cm-seed": "~1.15.0-beta.0",
37+
"@contentstack/cli-command": "~1.8.0-beta.0",
38+
"@contentstack/cli-config": "~1.20.0-beta.0",
3939
"@contentstack/cli-launch": "^1.9.6",
40-
"@contentstack/cli-migration": "~1.11.0",
41-
"@contentstack/cli-utilities": "~1.17.4",
42-
"@contentstack/cli-variants": "~1.3.8",
40+
"@contentstack/cli-migration": "~1.12.0-beta.0",
41+
"@contentstack/cli-utilities": "~1.18.0-beta.0",
42+
"@contentstack/cli-variants": "~1.4.0-beta.0",
4343
"@contentstack/management": "~1.27.5",
4444
"@oclif/core": "^4.3.0",
4545
"@oclif/plugin-help": "^6.2.28",

0 commit comments

Comments
 (0)