From 44effefa9cd39aece25af13d815ae9251a408918 Mon Sep 17 00:00:00 2001 From: MarcoIeni <11428655+MarcoIeni@users.noreply.github.com> Date: Sat, 29 Jan 2022 15:29:41 +0100 Subject: [PATCH] cd: match tags starting with `v` --- template/.github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/.github/workflows/cd.yml b/template/.github/workflows/cd.yml index 66f9d61..edd7d7c 100644 --- a/template/.github/workflows/cd.yml +++ b/template/.github/workflows/cd.yml @@ -3,7 +3,7 @@ name: CD # Continuous Deployment on: push: tags: - - '[0-9]+.[0-9]+.[0-9]+' + - '[v]?[0-9]+.[0-9]+.[0-9]+' jobs: {% if crate_type == "bin" %}