mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-11 16:37:14 +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
|
||||
|
||||
on:
|
||||
push: {}
|
||||
pull_request: {}
|
||||
push:
|
||||
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:
|
||||
build-linux:
|
||||
|
|
|
|||
Loading…
Reference in a new issue