Skip to content

Commit

Permalink
ci: fix invalid semantic release plugin config (#21)
Browse files Browse the repository at this point in the history
Fix invalid config for the `semantic-release-replace-plugin` semantic
release plugin.
  • Loading branch information
kennedykori authored Jan 22, 2024
1 parent 34c107a commit e32ca6b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .releaserc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ plugins:
- countMatches: true
files:
- README.md
- from:
- "<version>.*</version>"
- "'io.github.kennedykori:utils:.*'"
- '"io.github.kennedykori:utils:.*"'
- 'rev=".*"'
- to:
- "<version>${nextRelease.version}</version>"
- "'io.github.kennedykori:utils:${nextRelease.version}'"
- '"io.github.kennedykori:utils:${nextRelease.version}"'
- 'rev="${nextRelease.version}"'
from:
- "<version>.*</version>"
- "'io.github.kennedykori:utils:.*'"
- '"io.github.kennedykori:utils:.*"'
- 'rev=".*"'
to:
- "<version>${nextRelease.version}</version>"
- "'io.github.kennedykori:utils:${nextRelease.version}'"
- '"io.github.kennedykori:utils:${nextRelease.version}"'
- 'rev="${nextRelease.version}"'
results:
- file: README.md
hasChanged: true
Expand Down

0 comments on commit e32ca6b

Please sign in to comment.