From cc61d1b2fd148501d8b3df1e17d27dc0432884af Mon Sep 17 00:00:00 2001 From: Aeltumn Date: Sat, 27 Apr 2024 15:52:04 +0200 Subject: [PATCH] Just use * --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3f820d1..ec76f3d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,7 @@ name: Build Releases on: push: tags: - - "v[0-9a-zA-Z.]+-[0-9a-zA-Z.]+" + - "v*" # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -40,5 +40,5 @@ jobs: - name: Create Draft Release uses: softprops/action-gh-release@v1 with: - files: build/libs/autoreconnect-+([0-9a-zA-Z.])-+([0-9a-zA-Z.]).jar + files: build/libs/autoreconnect-*.jar draft: true