Run 'build' CI action only on branches and PRS, not tags

Tags are used for releases and they do the same build/lint/test in their own job. No need to do it twice.
There's probably a way of refactoring this stuff out, but our CI configuration is simple enough that I don't really care at the moment.
This commit is contained in:
Jason Fields 2020-12-08 14:32:39 -05:00
parent 71c1788fed
commit 1897cb13ef

View File

@ -1,6 +1,12 @@
name: build
on: [push, pull_request]
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build: