From 895e26a000cc54643691bdaef5fd7ea5f4451a89 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Sun, 10 Feb 2019 12:51:56 -0500 Subject: [PATCH] ci: don't do releases on all tags This attempts to make Appveyor more conservative in what tags it thinks are releases. I don't know for sure, but it looks like the previous regex could match anywhere, so we anchor it. Fixes #1195 --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 2d0ebca1..15350c9a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -77,5 +77,5 @@ deploy: branches: only: - - /\d+\.\d+\.\d+/ + - /^\d+\.\d+\.\d+$/ - master