Skip to content

Commit f95efe0

Browse files
committed
prod version update
1 parent b8eb099 commit f95efe0

14 files changed

Lines changed: 79 additions & 76 deletions

File tree

.github/workflows/release-v1-beta-core.yml renamed to .github/workflows/release-production-core.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release CLI Core (v1 Beta)
1+
name: Release CLI Core (Production)
22

33
on:
44
workflow_call:
@@ -37,15 +37,15 @@ jobs:
3737
filename: .github/config/release.json
3838
prefix: release
3939

40-
- name: Publishing core (Beta)
40+
- name: Publishing core (Production)
4141
id: publish-core
4242
uses: JS-DevTools/npm-publish@v3
4343
with:
4444
token: ${{ secrets.NPM_TOKEN }}
4545
package: ./packages/contentstack/package.json
46-
tag: v1-beta
46+
tag: latest
4747

48-
- name: Create Core Beta Release
48+
- name: Create Core Production Release
4949
id: create_release
5050
env:
5151
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -56,7 +56,6 @@ jobs:
5656
echo "Release $TAG already exists — skipping."
5757
else
5858
gh release create "$TAG" \
59-
--title "Core Beta $VERSION" \
60-
--generate-notes \
61-
--prerelease
59+
--title "Core Production $VERSION" \
60+
--generate-notes
6261
fi
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CLI Production Release Pipeline
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
jobs:
8+
plugins:
9+
uses: ./.github/workflows/release-production-platform-plugins.yml
10+
secrets: inherit
11+
12+
core:
13+
needs: plugins
14+
uses: ./.github/workflows/release-production-core.yml
15+
secrets: inherit

.github/workflows/release-v1-beta-platform-plugins.yml renamed to .github/workflows/release-production-platform-plugins.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release CLI Platform Plugins (v1 Beta)
1+
name: Release CLI Platform Plugins
22

33
on:
44
workflow_call:
@@ -38,41 +38,41 @@ jobs:
3838
prefix: release
3939

4040
# Dev Dependencies
41-
- name: Publishing dev dependencies (Beta)
41+
- name: Publishing dev dependencies (Production)
4242
uses: JS-DevTools/npm-publish@v3
4343
with:
4444
token: ${{ secrets.NPM_TOKEN }}
4545
package: ./packages/contentstack-dev-dependencies/package.json
46-
tag: beta
46+
tag: latest
4747

4848
# Utilities
49-
- name: Publishing utilities (Beta)
49+
- name: Publishing utilities (Production)
5050
uses: JS-DevTools/npm-publish@v3
5151
with:
5252
token: ${{ secrets.NPM_TOKEN }}
5353
package: ./packages/contentstack-utilities/package.json
54-
tag: beta
54+
tag: latest
5555

5656
# Command
57-
- name: Publishing command (Beta)
57+
- name: Publishing command (Production)
5858
uses: JS-DevTools/npm-publish@v3
5959
with:
6060
token: ${{ secrets.NPM_TOKEN }}
6161
package: ./packages/contentstack-command/package.json
62-
tag: beta
62+
tag: latest
6363

6464
# Config
65-
- name: Publishing config (Beta)
65+
- name: Publishing config (Production)
6666
uses: JS-DevTools/npm-publish@v3
6767
with:
6868
token: ${{ secrets.NPM_TOKEN }}
6969
package: ./packages/contentstack-config/package.json
70-
tag: beta
70+
tag: latest
7171

7272
# Auth
73-
- name: Publishing auth (Beta)
73+
- name: Publishing auth (Production)
7474
uses: JS-DevTools/npm-publish@v3
7575
with:
7676
token: ${{ secrets.NPM_TOKEN }}
7777
package: ./packages/contentstack-auth/package.json
78-
tag: beta
78+
tag: latest

.github/workflows/release.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.talismanrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
fileignoreconfig:
2+
- filename: .github/workflows/release-production-pipeline.yml
3+
checksum: 48264fdeb61cbbed348c7271aae5e155651f490aca063dbb1d54f2c15a154090
4+
version: "1.0"

packages/contentstack-auth/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli-auth
1818
$ csdx COMMAND
1919
running command...
2020
$ csdx (--version)
21-
@contentstack/cli-auth/1.8.0-beta.0 darwin-arm64 node-v24.13.0
21+
@contentstack/cli-auth/1.8.0-beta.1 darwin-arm64 node-v22.13.1
2222
$ csdx --help [COMMAND]
2323
USAGE
2424
$ csdx COMMAND

packages/contentstack-auth/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@contentstack/cli-auth",
33
"description": "Contentstack CLI plugin for authentication activities",
4-
"version": "1.8.0-beta.1",
4+
"version": "1.8.0",
55
"author": "Contentstack",
66
"bugs": "https://github.com/contentstack/cli/issues",
77
"scripts": {
@@ -15,8 +15,8 @@
1515
"lint": "eslint src/**/*.ts"
1616
},
1717
"dependencies": {
18-
"@contentstack/cli-command": "~1.8.0-beta.1",
19-
"@contentstack/cli-utilities": "~1.19.0-beta.0",
18+
"@contentstack/cli-command": "~1.8.0",
19+
"@contentstack/cli-utilities": "~1.19.0",
2020
"@oclif/core": "^4.3.0",
2121
"@oclif/plugin-help": "^6.2.28",
2222
"otplib": "^12.0.1"

packages/contentstack-command/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@contentstack/cli-command",
33
"description": "Contentstack CLI plugin for configuration",
4-
"version": "1.8.0-beta.1",
4+
"version": "1.8.0",
55
"author": "Contentstack",
66
"main": "lib/index.js",
77
"types": "lib/index.d.ts",
@@ -14,7 +14,7 @@
1414
"lint": "eslint src/**/*.ts"
1515
},
1616
"dependencies": {
17-
"@contentstack/cli-utilities": "~1.19.0-beta.0",
17+
"@contentstack/cli-utilities": "~1.19.0",
1818
"contentstack": "^3.25.3",
1919
"@oclif/core": "^4.3.0",
2020
"@oclif/plugin-help": "^6.2.28"

packages/contentstack-config/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ $ npm install -g @contentstack/cli-config
1818
$ csdx COMMAND
1919
running command...
2020
$ csdx (--version)
21-
@contentstack/cli-config/1.20.0-beta.0 darwin-arm64 node-v24.13.0
21+
@contentstack/cli-config/1.20.0-beta.1 darwin-arm64 node-v22.13.1
2222
$ csdx --help [COMMAND]
2323
USAGE
2424
$ csdx COMMAND

packages/contentstack-config/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@contentstack/cli-config",
33
"description": "Contentstack CLI plugin for configuration",
4-
"version": "1.20.0-beta.1",
4+
"version": "1.20.0",
55
"author": "Contentstack",
66
"scripts": {
77
"build": "pnpm compile && oclif manifest && oclif readme",
@@ -14,8 +14,8 @@
1414
"lint": "eslint src/**/*.ts"
1515
},
1616
"dependencies": {
17-
"@contentstack/cli-command": "~1.8.0-beta.1",
18-
"@contentstack/cli-utilities": "~1.19.0-beta.0",
17+
"@contentstack/cli-command": "~1.8.0",
18+
"@contentstack/cli-utilities": "~1.19.0",
1919
"@contentstack/utils": "~1.7.0",
2020
"@oclif/core": "^4.3.0",
2121
"@oclif/plugin-help": "^6.2.28",

0 commit comments

Comments
 (0)