Skip to content

Commit 101ce22

Browse files
committed
Adding Releasing.md file
1 parent 09feb36 commit 101ce22

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

RELEASING.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# How to release a new version of SAVE
2+
3+
* You should have permissions to push to the main repo
4+
* Simply create a new git tag with format `v*` and push it. Github workflow will perform release automatically.
5+
6+
For example:
7+
```bash
8+
$ git tag v1.0.0
9+
$ git push origin --tags
10+
```
11+
12+
After the release workflow has started, version number is determined from tag. Binaries are uploaded to maven repo and
13+
a new github release is created with fat jar.

save-plugins/warn-plugin/src/commonNonJsTest/kotlin/com/saveourtool/save/plugin/warn/utils/ComparisonTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class ComparisonTest {
4646
)
4747
)
4848
val warnPluginConfig = WarnPluginConfig(exactWarningsMatch = false, patternForRegexInWarning = listOf("{{", "}}"))
49-
val config = fs.createFile(tmpDir / "save.toml")
49+
fs.createFile(tmpDir / "save.toml")
5050

5151
val results = ResultsChecker(
5252
expectedWarningsMap, actualWarningsMap, warnPluginConfig

0 commit comments

Comments
 (0)