From cf5033292303886483ab47489e8d93aa6bad0ba8 Mon Sep 17 00:00:00 2001 From: Christian Egli Date: Thu, 30 May 2024 13:59:57 +0200 Subject: [PATCH] Fix the release tag pattern --- .github/workflows/upload-release-asset.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/upload-release-asset.yml b/.github/workflows/upload-release-asset.yml index dbd5ec2..4fce16c 100644 --- a/.github/workflows/upload-release-asset.yml +++ b/.github/workflows/upload-release-asset.yml @@ -2,7 +2,7 @@ on: push: # Sequence of patterns matched against refs/tags tags: - - 'v[0-9]+.[0-9]+.[0-9]+' # Push events to matching release tags, i.e. v0.8.1 + - 'v[0-9]+.[0-9]+' # Push events to matching release tags, i.e. v0.8 name: Upload Release Asset