From 03dd2317e8ddebb49c182d265e24a734f4a41561 Mon Sep 17 00:00:00 2001 From: potzplitz <127513690+potzplitz@users.noreply.github.com> Date: Sun, 3 Mar 2024 01:36:38 +0100 Subject: [PATCH] Update maven.yml --- .github/workflows/maven.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index f3be581..6edb1ec 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -4,6 +4,9 @@ on: push: branches: - main + pull_request: + branches: + - main jobs: build: @@ -27,6 +30,9 @@ jobs: - name: Erstelle Git-Tag run: git tag $(date +'%Y%m%d%H%M%S') -a -m "Generierter Tag von GitHub Actions" + - name: Sende Tags + run: git push --tags --quiet + - name: Baue mit Maven run: mvn clean install