mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Exclude certain paths from docker publish workflow (#10884)
This commit is contained in:
parent
c6c5e6c61b
commit
689d6ddffe
1 changed files with 11 additions and 1 deletions
12
.github/workflows/goreleaser-snapshot-fleet.yaml
vendored
12
.github/workflows/goreleaser-snapshot-fleet.yaml
vendored
|
|
@ -1,6 +1,16 @@
|
|||
name: Docker publish
|
||||
|
||||
on: push
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- 'handbook/**'
|
||||
- 'website/**'
|
||||
- 'mdm-profiles/**'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- 'handbook/**'
|
||||
- 'website/**'
|
||||
- 'mdm-profiles/**'
|
||||
|
||||
# This allows a subsequently queued workflow run to interrupt previous runs
|
||||
concurrency:
|
||||
|
|
|
|||
Loading…
Reference in a new issue