Skip to content

Commit e72d6b4

Browse files
committed
fix: correct docs-deploy workflow YAML formatting
Use proper YAML list syntax for branches and paths to ensure correct parsing and trigger conditions.
1 parent 633237b commit e72d6b4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/docs-deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ name: Deploy Documentation to Netcup
22

33
on:
44
push:
5-
branches: [main]
6-
paths: ['docs-site/**']
5+
branches:
6+
- main
7+
paths:
8+
- 'docs-site/**'
79
workflow_dispatch:
810
inputs:
911
force_deploy:

0 commit comments

Comments
 (0)