From 6a9cfc863308f181f5d40ef8969529f9143cd554 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Fri, 17 Sep 2021 23:23:41 +0000 Subject: [PATCH] Only run GitHub Actions for tags that look like semver versions (#1484) We had previously been running for sass_api tags, which inevitably failed when they didn't match the pubspec version. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f60591799..0364ab8ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ env: on: push: branches: [main, feature.*] - tags: ['**'] + tags: ['[0-9]+.[0-9]+.*'] pull_request: jobs: