From 7a0f398aba400e74783b5951a5c36bc9df1abe3e Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Tue, 14 Sep 2021 17:05:29 -0700 Subject: [PATCH] Only run GitHub Actions for tags that look like semver versions 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 0fc4b98e4..f5fb37fd2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ env: on: push: branches: [main, feature.*] - tags: ['**'] + tags: ['[0-9]+.[0-9]+.*'] pull_request: jobs: