From 57c731592cca2a811614caa597135810bc1b2800 Mon Sep 17 00:00:00 2001 From: Angel M De Miguel Date: Mon, 14 Nov 2022 10:10:41 +0100 Subject: [PATCH] fix: set the right tag regexp to build the artifacts --- .github/workflows/artifacts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index ccb9ac18..3e0c42e3 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -3,7 +3,7 @@ name: Build artifacts on: push: tags: - - "[0-9]+.[0-9]+.[0-9]+" + - "v[0-9]+.[0-9]+.[0-9]+" # TODO: uncomment for testing. This will run by default only when a new tag is created # pull_request: # branches: [ main ]