-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[v2] Prepare deployment workflow for V2 patch releases (#3241)
* Prepare deployment workflow for V2 patch releases Signed-off-by: Timothy Johnson <[email protected]> * Update release.config.js Signed-off-by: Timothy Johnson <[email protected]> * Update deployment.yml Signed-off-by: Timothy Johnson <[email protected]> --------- Signed-off-by: Timothy Johnson <[email protected]>
- Loading branch information
Showing
2 changed files
with
11 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ on: | |
push: | ||
branches: | ||
- main | ||
- maintenance | ||
- v1-lts | ||
- release/3.* | ||
- v2-lts | ||
paths: | ||
- .github/release.config.js | ||
- .github/workflows/deployment.yml | ||
|
@@ -39,7 +39,7 @@ jobs: | |
node-version: '18.x' | ||
|
||
- name: Install Yarn and Lerna | ||
run: npm install -g yarn lerna@6 | ||
run: npm install -g yarn lerna@6 [email protected] | ||
|
||
- name: Build Source | ||
run: yarn | ||
|
@@ -66,7 +66,7 @@ jobs: | |
- name: Update Changelogs | ||
if: steps.octorelease.outcome == 'success' | ||
run: | | ||
sed -i '0,/##/s//## TBD Release\n\n### New features and enhancements\n\n### Bug fixes\n\n##/' packages/*/CHANGELOG.md | ||
sed -i '0,/##/s//## TBD Release\n\n### Bug fixes\n\n##/' packages/*/CHANGELOG.md | ||
git add packages/*/CHANGELOG.md | ||
- name: Create Snapshot Version | ||
|