From e6c10abaf7075ba08c088c038f7a1fff921d929b Mon Sep 17 00:00:00 2001 From: Legends11 <235496468+tickwarden@users.noreply.github.com> Date: Mon, 17 Aug 2026 10:27:39 +0300 Subject: [PATCH] Enable tagging for release workflow Added support for tagging releases in the build workflow. --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fb34daa..ad65e23 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,6 +3,7 @@ name: Build on: push: branches: [ main, master, develop ] + tags: [ 'v*.*.*' ] pull_request: branches: [ main, master, develop ] workflow_dispatch: @@ -37,7 +38,7 @@ jobs: build/libs/*.zip if-no-files-found: error retention-days: 14 - # Optional: publish jar on tagged releases + # Runs on tagged releases: git tag v1.2.3 && git push origin v1.2.3 release: name: Release needs: build