Skip to content

Commit

Permalink
Do not run release workflow for *-dev tags
Browse files Browse the repository at this point in the history
Release workflow now only runs for
tag pattern: 'v[0-9]+.[0-9]+.[0-9]+'
and skips for '*-*'.

Signed-off-by: Navid Shaikh <navids@vmware.com>
  • Loading branch information
navidshaikh authored and vuil committed Oct 1, 2021
1 parent ce065c1 commit b899d9a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ on:
branches:
- "!not_activated_on_branches!*"
tags:
- "v*"
- "v[0-9]+.[0-9]+.[0-9]+"
- "!*-*"

jobs:

Expand Down

0 comments on commit b899d9a

Please sign in to comment.