Skip to content

Commit

Permalink
Only run GitHub Actions for tags that look like semver versions (#1484)
Browse files Browse the repository at this point in the history
We had previously been running for sass_api tags, which inevitably
failed when they didn't match the pubspec version.
  • Loading branch information
nex3 committed Sep 17, 2021
1 parent 8090b99 commit 6a9cfc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -13,7 +13,7 @@ env:
on:
push:
branches: [main, feature.*]
tags: ['**']
tags: ['[0-9]+.[0-9]+.*']
pull_request:

jobs:
Expand Down

0 comments on commit 6a9cfc8

Please sign in to comment.