Skip to content

Commit

Permalink
Fix branch matchers
Browse files Browse the repository at this point in the history
Signed-off-by: Kemal Akkoyun <[email protected]>
  • Loading branch information
kakkoyun committed Jun 11, 2020
1 parent 709473e commit 22157f9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ name: release
on:
push:
tags:
- "v*.*.*"
- v[0-9].[0-9]+.[0-9]+
branches:
- -master
- release-*

jobs:
goreleaser:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ name: snapshot
on:
push:
tags:
- '*'
- !v[0-9].[0-9]+.[0-9]+
branches:
- -master
- release-*

jobs:
goreleaser:
Expand Down

0 comments on commit 22157f9

Please sign in to comment.