Skip to content

Commit 1b6a42b

Browse files
ci: update release-please configuration and manifest format (#194)
* ci: update release-please configuration and manifest format * ci: update SDK release workflow tag pattern to web3mail-v* * ci: Update release-please-config.json
1 parent e028a1c commit 1b6a42b

File tree

4 files changed

+11
-16
lines changed

4 files changed

+11
-16
lines changed

.github/workflows/release-please.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
name: release-please
21
on:
32
push:
43
branches:
@@ -9,6 +8,8 @@ permissions:
98
issues: write
109
pull-requests: write
1110

11+
name: release-please
12+
1213
jobs:
1314
release-please:
1415
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]

.github/workflows/sdk-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: publish-npm-sdk-latest
33
on:
44
push:
55
tags:
6-
- 'sdk-v*'
6+
- 'web3mail-v*'
77

88
jobs:
99
npm-publish:

.release-please-manifest.json

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
{
2-
"packages": {
3-
".": {
4-
"version": "1.2.2"
5-
},
6-
"dapp": {
7-
"version": "0.9.0"
8-
}
9-
}
10-
}
2+
".": "1.2.2",
3+
"dapp": "0.9.0"
4+
}

release-please-config.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3-
"include-component-in-tag": false,
3+
"include-component-in-tag": true,
44
"changelog-sections": [
5-
{ "type": "feat", "section": "Added", "hidden": false },
5+
{ "type": "feat", "section": "Added", "hidden": false },
66

77
{ "type": "fix", "section": "Changed", "hidden": false },
88
{ "type": "change", "section": "Changed", "hidden": false },
@@ -21,19 +21,19 @@
2121
{ "type": "deps", "section": "Misc", "hidden": true },
2222
{ "type": "ci", "section": "Misc", "hidden": true },
2323
{ "type": "docs", "section": "Misc", "hidden": true }
24-
],
24+
],
2525
"packages": {
2626
".": {
2727
"release-type": "node",
2828
"changelog-path": "CHANGELOG.md",
2929
"include-v-in-tag": true,
30-
"tag-format": "sdk-v${version}"
30+
"exclude-paths": ["dapp","deployment-dapp","tests"]
3131
},
3232
"dapp": {
3333
"release-type": "node",
3434
"changelog-path": "dapp/CHANGELOG.md",
3535
"include-v-in-tag": true,
36-
"tag-format": "dapp-v${version}"
36+
"exclude-paths": ["deployment-dapp","tests"]
3737
}
3838
}
3939
}

0 commit comments

Comments
 (0)