File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ workflow_dispatch :
3
+ inputs :
4
+ branch :
5
+ description : " Source branch to deploy"
6
+ required : false
7
+ default : " main"
8
+ type : string
9
+ environment :
10
+ description : " Determines where build gets pushed to"
11
+ required : false
12
+ default : " preview"
13
+ type : choice
14
+ options :
15
+ - preview
16
+ - dev
17
+ - staging
18
+ - prod
19
+ push :
20
+ branches :
21
+ - main
22
+ paths :
23
+ - nginx-gateway-fabric/site/content
24
+ pull_request :
25
+ branches :
26
+ - " *"
27
+ jobs :
28
+ call-docs-build-push :
29
+ uses : nginxinc/docs-actions/.github/workflows/docs-build-push.yml@main
30
+ with :
31
+ production_url_path : " /nginx-gateway-fabric"
32
+ preview_url_path : " /previews/nginx-gateway-fabric/"
33
+ docs_source_path : " ./public/"
34
+ cdn_content_path : " /*"
35
+ doc_type : " hugo"
36
+ secrets :
37
+ AZURE_CREDENTIALS : ${{secrets.AZURE_CREDENTIALS}}
38
+ AZURE_KEY_VAULT : ${{secrets.AZURE_KEY_VAULT}}
You can’t perform that action at this time.
0 commit comments