Skip to content

Commit

Permalink
Adding Releasing.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
orchestr7 committed Dec 1, 2022
1 parent 09feb36 commit 101ce22
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# How to release a new version of SAVE

* You should have permissions to push to the main repo
* Simply create a new git tag with format `v*` and push it. Github workflow will perform release automatically.

For example:
```bash
$ git tag v1.0.0
$ git push origin --tags
```

After the release workflow has started, version number is determined from tag. Binaries are uploaded to maven repo and
a new github release is created with fat jar.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ComparisonTest {
)
)
val warnPluginConfig = WarnPluginConfig(exactWarningsMatch = false, patternForRegexInWarning = listOf("{{", "}}"))
val config = fs.createFile(tmpDir / "save.toml")
fs.createFile(tmpDir / "save.toml")

val results = ResultsChecker(
expectedWarningsMap, actualWarningsMap, warnPluginConfig
Expand Down

0 comments on commit 101ce22

Please sign in to comment.