Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2443ece
release oclifv4 changes for cli utilities and command plugin
shafeeqd959 Apr 7, 2025
a003c14
merged latest changes
shafeeqd959 Apr 7, 2025
7d50825
updated readme and locak file
shafeeqd959 Apr 7, 2025
6e2c080
updated audit script
shafeeqd959 Apr 7, 2025
3031342
Merge pull request #1843 from contentstack/development
harshithad0703 Apr 8, 2025
c84cb1d
Merge pull request #1854 from contentstack/development
harshithad0703 Apr 8, 2025
a996c90
Merge pull request #1845 from contentstack/feature/DX-2407
shafeeqd959 Apr 9, 2025
657561a
Merge branch 'main' into fix/staging-v1.39.0
harshithad0703 Apr 10, 2025
c665423
fix: resolve version conflicts in README files across multiple packages
harshithad0703 Apr 10, 2025
e36e8b4
added missing filter line
harshithad0703 Apr 10, 2025
d79c314
fix: enable releaseAll and disable unnecessary plugins in release con…
harshithad0703 Apr 10, 2025
4ca4d25
fix: remove unnecessary conditions for successful publish in release …
harshithad0703 Apr 10, 2025
372e9a4
Fixed package.json
cs-raj Apr 10, 2025
75ffd88
fix: add success condition checks in release workflow and clean up pa…
harshithad0703 Apr 10, 2025
7f86e8f
docs: update README with new audit and fix command usage details
harshithad0703 Apr 10, 2025
8b3d8e8
Merge pull request #1857 from contentstack/fix/staging-v1.39.0
harshithad0703 Apr 10, 2025
bd5d549
Updated Script
cs-raj Apr 10, 2025
b6000cc
Merge branch 'staging' into fix/build
cs-raj Apr 10, 2025
589bbd5
Lock file update
cs-raj Apr 10, 2025
b340354
Merge branch 'development' into fix/build
cs-raj Apr 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions .github/config/release.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"releaseAll": true,
"plugins": {
"utilities": false,
"command": false,
"config": false,
"auth": false,
"export": false,
"import": true,
"clone": false,
"export-to-csv": false,
"migrate-rte": false,
"migration": false,
"seed": false,
"bootstrap": false,
"bulk-publish": false,
"dev-dependencies": false,
"launch": false,
"branches": false,
"core": false
}
}
"releaseAll": true,
"plugins": {
"utilities": false,
"command": false,
"config": false,
"auth": false,
"export": false,
"import": false,
"clone": false,
"export-to-csv": false,
"migrate-rte": false,
"migration": false,
"seed": false,
"bootstrap": false,
"bulk-publish": false,
"dev-dependencies": false,
"launch": false,
"branches": false,
"core": false
}
}
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,13 +293,17 @@ jobs:
token: ${{ secrets.NPM_TOKEN }}
package: ./packages/contentstack/package.json
- uses: actions/checkout@v4
if: ${{ steps.publish-core.conclusion == 'success' }}
with:
ref: 'prod-qa-pipeline'
- run: echo ${{ steps.publish-core.outputs.version }} > version.md
if: ${{ steps.publish-core.conclusion == 'success' }}
- uses: EndBug/add-and-commit@v9
if: ${{ steps.publish-core.conclusion == 'success' }}
with:
message: 'Released version'
- name: Create Release
if: ${{ steps.publish-core.conclusion == 'success' }}
id: create_release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading
Loading