Skip to content

Commit d3c7969

Browse files
committed
Make editorconfigChecker happy (#591)
1 parent 8626c06 commit d3c7969

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

MAINTAINING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@ The process is equal to the making of a release candidate, but without making an
100100
```
101101
git push origin A.B.C-rcN
102102
```
103-
Because there is `fetch --no-tags` in `actions/checkout@v2` the `-SNAPSHOT` suffix will always be appended (in comparison to doing `./gradlew publishAllPublicationsToGitHubPackagesRepository` locally, which will find the `SCM tag`). The publishing to GitHub packages is triggered then.
103+
Because there is `fetch --no-tags` in `actions/checkout@v2` the `-SNAPSHOT` suffix will always be appended (in comparison to doing `./gradlew publishAllPublicationsToGitHubPackagesRepository` locally, which will find the `SCM tag`). The publishing to GitHub packages is triggered then.
104104
105105
If we don't want `-SNAPSHOT` we may want to remove the `-SNAPSHOT` in `build.gradle`:
106106
```
107107
if (grgit.branch.current().name.contains('-rc')) { ...
108-
return "${grgit.branch.current().name}-SNAPSHOT"
108+
return "${grgit.branch.current().name}-SNAPSHOT"
109109
}
110110
```
111111
@@ -150,9 +150,9 @@ Note that `Packages` is not the same as [`Releases`](https://github.com/metafact
150150
a) It's going from your local Git repository to Sonatype to Maven Central. Each station requires some manual actions so you can double check that everything is ok. b) A release should also be published to GitHub.
151151
152152
1. Switch to `master` branch. Merge the approved `rc` into master:
153-
```
154-
git switch master; pull --no-ff origin A.B.C-rcN; git push origin master
155-
```
153+
```
154+
git switch master; pull --no-ff origin A.B.C-rcN; git push origin master
155+
```
156156
157157
1. Make sure you have a signed tag locally:
158158
```

0 commit comments

Comments
 (0)