Skip to content

Commit 4ee7235

Browse files
brunoborgesCopilot
andcommitted
Fix deploy workflow path triggers for YAML content and translations
Update push path filters to: - content/** (was content/**/*.json, now covers YAML files too) - translations/** (new, triggers deploy on translation changes) - templates/** (unchanged) - site/** (unchanged) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 7f1ce11 commit 4ee7235

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ on:
44
push:
55
branches: [main]
66
paths:
7-
- 'content/**/*.json'
7+
- 'content/**'
8+
- 'translations/**'
89
- 'templates/**'
910
- 'site/**'
1011
workflow_run:

0 commit comments

Comments
 (0)