29 lines
		
	
	
		
			833 B
		
	
	
	
		
			TOML
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			833 B
		
	
	
	
		
			TOML
		
	
	
	
[build]
 | 
						|
# This default build command adds the robots noindex directive to the site headers.
 | 
						|
# It is turned off for only for the production site by using [context.master] below
 | 
						|
# DO NOT REMOVE THIS (contact @kubernetes/sig-docs-leads)
 | 
						|
publish = "public"
 | 
						|
functions = "functions"
 | 
						|
command = "make non-production-build"
 | 
						|
 | 
						|
[build.environment]
 | 
						|
HUGO_VERSION = "0.70.0"
 | 
						|
NODE_VERSION = "10.20.0"
 | 
						|
 | 
						|
[context.production.environment]
 | 
						|
HUGO_BASEURL = "https://kubernetes.io/"
 | 
						|
HUGO_ENV = "production"
 | 
						|
HUGO_ENABLEGITINFO = "true"
 | 
						|
 | 
						|
[context.deploy-preview]
 | 
						|
command = "make deploy-preview"
 | 
						|
 | 
						|
[context.branch-deploy]
 | 
						|
command = "make deploy-preview"
 | 
						|
 | 
						|
[context.master]
 | 
						|
# This context is triggered by the `master` branch and allows search indexing
 | 
						|
# DO NOT REMOVE THIS (contact @kubernetes/sig-docs-leads)
 | 
						|
publish = "public"
 | 
						|
command = "make production-build"
 |