Skip to content
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
feat: test
  • Loading branch information
mtrezza committed May 20, 2024
commit f49efe5b4a051ab06aca691403126c8afd628a28
13 changes: 12 additions & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ async function config() {
const config = {
branches: [
'master',
'feat/add-auto-release',
// { name: 'alpha', prerelease: true },
// { name: 'beta', prerelease: true },
'next-major',
Expand Down Expand Up @@ -78,7 +79,17 @@ async function config() {
['@semantic-release/changelog', {
'changelogFile': changelogFile,
}],
['@droidsolutions-oss/semantic-release-update-file', {}],
['@droidsolutions-oss/semantic-release-update-file', {
'files': [
{
'path': ['./Parse/Parse.csproj'],
'type': 'xml',
'replacements': [
{ 'key': 'Version', 'value': '${nextRelease.version}' },
]
}
]
}],
// ['@droidsolutions-oss/semantic-release-nuget', {}],
['@semantic-release/npm', {
'npmPublish': false,
Expand Down