Skip to content

Commit

Permalink
ci: use semver regular expression for tag (#798)
Browse files Browse the repository at this point in the history
## Description

The PR adds regular expression for validating tags which correspond
semver rules. E.g. `2.10.1`. Only such tags will be triggered a build
flow.
  • Loading branch information
aleksuss authored Jul 20, 2023
1 parent 2d2059f commit e928c8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
on:
push:
tags:
- '*'
- '[0-9]+.[0-9]+.[0-9]+'
name: Build
jobs:
release:
Expand Down

0 comments on commit e928c8d

Please sign in to comment.