Skip to content

Commit b4e6374

Browse files
committed
add branches wildcard to trigger commits but not tags for mvn.yml
Signed-off-by: Sam Spycher <samspycher@users.noreply.github.com>
1 parent 07e161e commit b4e6374

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/mvn.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
name: MVN Build
22

3-
on:
4-
push:
5-
tags-ignore:
6-
- "**"
3+
# The release script pushes tags and commits to the repository. Without tags-ignore, this would cause two builds to run.
4+
on: { push: { branches: ["**"], tags-ignore: ["**"] } }
75

86
jobs:
97
build:

0 commit comments

Comments
 (0)