Skip to content

Commit

Permalink
ci: fix %{VERSION} replacement while release.
Browse files Browse the repository at this point in the history
  • Loading branch information
LastDragon-ru committed Mar 28, 2024
1 parent f156fb8 commit 8a175c4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .release-it/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,14 @@ module.exports = {
files: [
'*.md',
'docs/*.md',
'docs/**/.md',
'packages/**/*.php',
'packages/**/*.md',
],
search: '%{VERSION}',
search: {
pattern: '%{VERSION}',
flags: 'g'
},
replace: '{{version}}',
},
},
Expand Down

0 comments on commit 8a175c4

Please sign in to comment.