From 442348bb1eccbfb73ede4fb67878f43e5d434635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20H=C3=BCbner?= Date: Wed, 24 Jul 2024 00:14:57 +0200 Subject: [PATCH] only publish tag with v prefix --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index aabcb2d..2c3b85d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,7 +23,7 @@ jobs: - run: ./gradlew --console plain --no-daemon --full-stacktrace check build - uses: softprops/action-gh-release@v2 - if: startsWith(github.ref, 'refs/tags/') + if: startsWith(github.ref, 'refs/tags/v') with: body: 'automated release at commit ${{ github.sha }}' files: 'build/dist/*.jar'