Browse Source

ci: Ignore release and gh-pages branches for CI build on push

tags/r1.9.0
Florian Zschocke 4 years ago
parent
commit
9b32ae7ecf
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      .github/workflows/ci-build.yml

+ 6
- 1
.github/workflows/ci-build.yml View File

@@ -1,6 +1,11 @@
name: Continous build - build and test on every push

on: push
on:
push:
branches-ignore:
- release
- 'releases/**'
- gh-pages

jobs:
build:

Loading…
Cancel
Save