Skip to content

Commit e8a5622

Browse files
authored
Merge pull request #40 from JairajJangle/develop
fix: workflow action not upgrading package json version
2 parents 3a6a1fa + e51cbd7 commit e8a5622

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@
6262
"multi-select",
6363
"dropdown-menu",
6464
"expandable-list",
65-
"customizable"
65+
"customizable",
66+
"expo",
67+
"web"
6668
],
6769
"repository": "https://github.com/JairajJangle/react-native-tree-multi-select",
6870
"author": "Jairaj Jangle <[email protected]> (https://github.com/JairajJangle)",

release.config.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ module.exports = {
44
'@semantic-release/commit-analyzer', // Analyzes commits for version bumping
55
'@semantic-release/release-notes-generator', // Generates release notes
66
'@semantic-release/changelog', // Generates the changelog
7-
'@semantic-release/git', // Commits changed files including the changelog
8-
'@semantic-release/github',
97
'@semantic-release/npm', // Handles npm publishing
8+
'@semantic-release/github', // Handles GitHub releases
9+
['@semantic-release/git', {
10+
assets: ['package.json', 'package-lock.json', 'CHANGELOG.md'],
11+
message: 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}'
12+
}],
1013
],
1114
};

0 commit comments

Comments
 (0)