mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-20 09:57:10 +00:00
ci: only trigger on source/build file changes, not docs/README
This commit is contained in:
parent
ab6387ea7e
commit
8a334fb5c0
22
.github/workflows/build-linux.yml
vendored
22
.github/workflows/build-linux.yml
vendored
|
|
@ -1,8 +1,26 @@
|
||||||
name: Build Linux Release
|
name: Build Linux Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push: {}
|
push:
|
||||||
pull_request: {}
|
paths:
|
||||||
|
- '**.cpp'
|
||||||
|
- '**.h'
|
||||||
|
- '**.c'
|
||||||
|
- '**/meson.build'
|
||||||
|
- 'meson.build'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'CMakeLists.txt'
|
||||||
|
- '.github/workflows/build-linux.yml'
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- '**.cpp'
|
||||||
|
- '**.h'
|
||||||
|
- '**.c'
|
||||||
|
- '**/meson.build'
|
||||||
|
- 'meson.build'
|
||||||
|
- '**/CMakeLists.txt'
|
||||||
|
- 'CMakeLists.txt'
|
||||||
|
- '.github/workflows/build-linux.yml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-linux:
|
build-linux:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue