From b4cb0f5e8a5fafc6cba8f9c2dcb570e640c2c499 Mon Sep 17 00:00:00 2001 From: Simon Lees Date: Wed, 14 Feb 2024 18:02:19 +1030 Subject: [PATCH] workflows: try and publish on tags more reliably. --- .github/workflows/build-plugin.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-plugin.yml b/.github/workflows/build-plugin.yml index 562e1d9..cff69a1 100644 --- a/.github/workflows/build-plugin.yml +++ b/.github/workflows/build-plugin.yml @@ -99,7 +99,10 @@ jobs: name: Publish plugin # only create a release if a tag was created that is called e.g. v1.2.3 # see also https://vcvrack.com/manual/Manifest#version - if: startsWith(github.ref, 'refs/tags/v') + on: + push: + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' runs-on: ubuntu-20.04 needs: [build, build-mac] steps: