remove SNAPSHOT
All checks were successful
CI / deploy (push) Successful in 4m53s
CI / deploy (pull_request) Successful in 4m50s

This commit is contained in:
2025-02-11 21:31:28 +01:00
parent 4ebd9a7262
commit a43f5b30f7
3 changed files with 55 additions and 14 deletions

View File

@@ -21,7 +21,10 @@ jobs:
java-version: '21'
- name: Build Runner
run: ./mvnw --no-transfer-progress clean verify -Pnative -Dquarkus.native.remote-container-build=true
run: |
./mvnw -B --no-transfer-progress clean validate -Prelease
./mvnw -B --no-transfer-progress versions:commit
./mvnw -B --no-transfer-progress clean verify -Pnative -Dquarkus.native.remote-container-build=true -Djgitver.skip=true
- name: Add coverage to PR
id: jacoco
@@ -40,3 +43,10 @@ jobs:
- name: Deploy
if: github.ref_name == 'main'
run: "docker compose up -d"
- name: create tag
if: github.ref_name == 'main'
run: |
version = var=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
git tag ${version} -m "release ${version}"
git push origin ${version}