Skip to content
This repository was archived by the owner on Sep 1, 2024. It is now read-only.

Commit 5971187

Browse files
author
Sebastian Hoß
committed
extend usage instructions per release
Signed-off-by: Sebastian Hoß <seb@hoß.de>
1 parent 77f79bf commit 5971187

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/mavenpublish.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,21 @@ jobs:
4343
release_name: Release ${{steps.release.outputs.version}}
4444
draft: false
4545
prerelease: false
46-
body: Automated release, see [commits](https://github.com/metio/maven-build-process/commits/${{steps.release.outputs.version}}) for changes
46+
body: |
47+
Automated release, see [commits](https://github.com/metio/maven-build-process/commits/${{steps.release.outputs.version}}) for changes.
48+
49+
Use the following snippet to use one of the parent POMs:
50+
```
51+
<!-- for early prototypes -->
52+
<parent>
53+
<groupId>wtf.metio.maven.parents</groupId>
54+
<artifactId>maven-parents-java-prototype</artifactId>
55+
<version>${{steps.release.outputs.version}}</version>
56+
</parent>
57+
<!-- for stable/established projects -->
58+
<parent>
59+
<groupId>wtf.metio.maven.parents</groupId>
60+
<artifactId>maven-parents-java-stable</artifactId>
61+
<version>${{steps.release.outputs.version}}</version>
62+
</parent>
63+
```

0 commit comments

Comments
 (0)