Fix ignoring paths for the GitHub CI builds

This was broken in 52d63eedd2 (Don't rerun CI builds for docs-only
changes, 2021-01-28) and no builds were run at all as the result.
This commit is contained in:
Vadim Zeitlin
2021-01-30 21:40:11 +01:00
parent 0d04792116
commit 7cba593a85

View File

@@ -5,15 +5,15 @@ on:
push:
branches:
- master
paths:
- '!docs'
- '!interface'
paths-ignore:
- 'docs'
- 'interface'
pull_request:
branches:
- master
paths:
- '!docs'
- '!interface'
paths-ignore:
- 'docs'
- 'interface'
jobs:
build: