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 aef14b2 commit 2c7993aCopy full SHA for 2c7993a
.github/workflows/release.yml
@@ -35,7 +35,7 @@ jobs:
35
echo "Git tag: $RELEASE_VERSION"
36
echo "Pom version: $POM_VERSION"
37
38
- if [ "${RELEASE_VERSION}-SNAPSHOT" != "$POM_VERSION" ]; then
+ if [ "$RELEASE_VERSION" != "$POM_VERSION" ]; then
39
echo "Error: Git tag ($RELEASE_VERSION) does not match pom.xml version ($POM_VERSION)"
40
exit 1
41
fi
release_process.md
@@ -8,6 +8,7 @@
8
- Note: `pom.xml` must have `X.Y.Z-SNAPSHOT` version
9
10
- **In `main` branch:**
11
+ - Set project version in `pom.xml` to `X.Y.Z` (remove the `-SNAPSHOT`)
12
- Update `README.md` (with new `X.Y.Z` dependency version)
13
- Update `CHANGELOG.md` with changes
14
- Update `ROADMAP.md` if necessary
0 commit comments