From ef436e92dcd86815c94af674ef61a90d69ca023b Mon Sep 17 00:00:00 2001 From: Guilherme Souza <101073+guilhermef@users.noreply.github.com> Date: Mon, 2 Sep 2024 23:13:32 +0200 Subject: [PATCH] fix: GH action release tag match --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 223a454..b049c71 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: release on: push: tags: - - '[0-9]+.[0-9]+.[0-9]+' + - "v[0-9]+.[0-9]+.[0-9]+" jobs: release: runs-on: ubuntu-latest @@ -13,7 +13,7 @@ jobs: id: setup-python uses: actions/setup-python@v5 with: - python-version: '3.10' + python-version: "3.10" - name: Install Poetry uses: snok/install-poetry@v1 with: