Browse Source

Only automatically build for branches, not tags

pull/400/head 22000.282.32.6_81cbd47
Valentin Radu 4 years ago
parent
commit
81cbd47dd4
  1. 12
      .github/workflows/build.yml

12
.github/workflows/build.yml

@ -6,7 +6,17 @@ @@ -6,7 +6,17 @@
name: Build
on: [push, pull_request]
on:
push:
branches:
- '**'
tags-ignore:
- '**'
pull_request:
branches:
- '**'
tags-ignore:
- '**'
env:
SOLUTION_FILE_PATH: .

Loading…
Cancel
Save