Skip to content

Commit 81cbd47

Browse files
committed
Only automatically build for branches, not tags
1 parent dd7dc2b commit 81cbd47

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,17 @@
66

77
name: Build
88

9-
on: [push, pull_request]
9+
on:
10+
push:
11+
branches:
12+
- '**'
13+
tags-ignore:
14+
- '**'
15+
pull_request:
16+
branches:
17+
- '**'
18+
tags-ignore:
19+
- '**'
1020

1121
env:
1222
SOLUTION_FILE_PATH: .

0 commit comments

Comments
 (0)