remove SNAPSHOT
This commit is contained in:
12
.github/workflows/ci.yaml
vendored
12
.github/workflows/ci.yaml
vendored
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user