We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6d6107 commit 8446796Copy full SHA for 8446796
RELEASING.md
@@ -12,28 +12,28 @@
12
13
4. Commit
14
15
- ```
16
- $ git commit -am "Prepare version X.Y.Z"
+ ```sh
+ git commit -am "Prepare version X.Y.Z"
17
```
18
19
5. Tag
20
21
22
- $ git tag -am "Version X.Y.Z" X.Y.Z
+ git tag -am "Version X.Y.Z" X.Y.Z
23
24
25
6. Update the `VERSION_NAME` in `gradle.properties` to the next "SNAPSHOT" version.
26
27
7. Commit
28
29
30
- $ git commit -am "Prepare next development version"
+ git commit -am "Prepare next development version"
31
32
33
8. Push!
34
35
36
- $ git push && git push --tags
+ git push && git push --tags
37
38
39
This will trigger a GitHub Action workflow which will create a GitHub release and upload the
0 commit comments