ci : add [no release] keyword + fix sanitizer builds (#23728)
* ci : skip release workflow on master when commit message contains [no release] Assisted-by: llama.cpp:local pi * ci : restrict sanitizer builds to x86_64 + fix build type the spark is apparently too slow for some reason * tests : fix undefined warning [no ci]
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
name: Release
|
||||
|
||||
# Skip this workflow on push to master if the commit message contains [no release]
|
||||
if: |
|
||||
github.event_name != 'push' ||
|
||||
github.ref != 'refs/heads/master' ||
|
||||
!contains(github.event.head_commit.message, '[no release]')
|
||||
|
||||
on:
|
||||
workflow_dispatch: # allows manual triggering
|
||||
inputs:
|
||||
|
||||
Reference in New Issue
Block a user