2 Commits

Author SHA1 Message Date
gitea
52d16cfee5 [no ci] release 1.0.6 2025-02-12 04:55:31 +00:00
e23592b6a4 moves git tag before snapshot
All checks were successful
CI / deploy (push) Successful in 8m36s
2025-02-12 05:46:56 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -62,9 +62,9 @@ jobs:
git config user.name "gitea"
git add ./pom.xml
git commit -m "[no ci] release ${{ steps.version.outputs.VERSION }}"
git tag ${{ steps.version.outputs.VERSION }} -m "release ${{ steps.version.outputs.VERSION }}"
./mvnw -B --no-transfer-progress clean validate -Pnew-snapshot
git add ./pom.xml
git commit -m "[no ci] prepare new Version"
git tag ${{ steps.version.outputs.VERSION }} -m "release ${{ steps.version.outputs.VERSION }}"
git push origin main
git push origin ${{ steps.version.outputs.VERSION }}

View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.arindy</groupId>
<artifactId>dice-tower</artifactId>
<version>1.0.6-SNAPSHOT</version>
<version>1.0.6</version>
<properties>
<compiler-plugin.version>3.13.0</compiler-plugin.version>