-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(versioning): Version and publish workflow
The `trigger-release.yml` workflow, execute a lerna-lite publish command which calculate the packages versions, publish them to the npmjs registry, pushes tags and lastly create GitHub releases for each package. This commit also changes the `repository` to point to the root repository URL and `repositoryDirectory` to the actual folder of each package to avoid problems while generating the release notes.
- Loading branch information
Showing
5 changed files
with
20 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,8 @@ | |
"version": "0.0.0", | ||
"type": "commonjs", | ||
"description": "Camel Catalog and schemas for Kaoto", | ||
"repository": "[email protected]:KaotoIO/kaoto-next.git", | ||
"repository": "https://github.com/KaotoIO/kaoto-next", | ||
"repositoryDirectory": "packages/camel-catalog", | ||
"author": "The Kaoto Team", | ||
"license": "Apache License v2.0", | ||
"private": true, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,10 +4,8 @@ | |
"version": "0.0.0", | ||
"type": "module", | ||
"description": "Kaoto UI tests and storybook", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]/KaotoIO/kaoto-next.git" | ||
}, | ||
"repository": "https://github.com/KaotoIO/kaoto-next", | ||
"repositoryDirectory": "packages/ui-tests", | ||
"author": { | ||
"name": "The Kaoto Team" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,8 @@ | |
"version": "0.0.0", | ||
"type": "module", | ||
"description": "Kaoto UI", | ||
"repository": "[email protected]:KaotoIO/kaoto-next.git", | ||
"repository": "https://github.com/KaotoIO/kaoto-next", | ||
"repositoryDirectory": "packages/ui", | ||
"author": "The Kaoto Team", | ||
"license": "Apache License v2.0", | ||
"types": "./lib/esm/public-api.d.ts", | ||
|