We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e5801e commit 36f3904Copy full SHA for 36f3904
1 file changed
.github/workflows/docker.yml
@@ -4,9 +4,9 @@ on:
4
push:
5
branches: master
6
pull_request:
7
- paths:
8
- - docker-compose.yml
9
- - services
+ paths:
+ - docker-compose.yml
+ - services
10
11
jobs:
12
build:
@@ -22,4 +22,18 @@ jobs:
22
name: ${{ matrix.profile }}
23
steps:
24
- uses: actions/checkout@v3
25
+ - uses: dorny/paths-filter@v2
26
+ id: changes
27
+ with:
28
+ filters: |
29
+ auto:
30
+ - 'services/auto/**'
31
+ sygil:
32
+ - 'services/sygil/**'
33
+ invoke:
34
+ - 'services/invoke/**'
35
+ comfy:
36
+ - 'services/comfy/**'
37
+
38
- run: docker compose --profile ${{ matrix.profile }} build --progress plain
39
+ if: github.ref == 'refs/heads/master' || steps.changes.outputs.${{ matrix.profile }} == 'true'
0 commit comments