aboutsummaryrefslogtreecommitdiffhomepage
path: root/testscripts/withdeploy/deploy.txt
diff options
context:
space:
mode:
Diffstat (limited to 'testscripts/withdeploy/deploy.txt')
-rw-r--r--testscripts/withdeploy/deploy.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/testscripts/withdeploy/deploy.txt b/testscripts/withdeploy/deploy.txt
new file mode 100644
index 000000000..2586f8b8f
--- /dev/null
+++ b/testscripts/withdeploy/deploy.txt
@@ -0,0 +1,24 @@
+# Test the deploy command.
+
+hugo deploy -h
+stdout 'Deploy your site to a cloud provider'
+mkdir mybucket
+hugo deploy --target mydeployment --invalidateCDN=false
+grep 'hello' mybucket/index.html
+replace public/index.html 'hello' 'changed'
+hugo deploy --target mydeployment --dryRun
+stdout 'Would upload: index.html'
+stdout 'Would invalidate CloudFront CDN with ID foobar'
+-- hugo.toml --
+disableKinds = ["RSS", "sitemap", "robotsTXT", "404", "taxonomy", "term"]
+baseURL = "https://example.org/"
+[deployment]
+[[deployment.targets]]
+name = "myfirst"
+url="gs://asdfasdf"
+[[deployment.targets]]
+name = "mydeployment"
+url="file://./mybucket"
+cloudFrontDistributionID = "foobar"
+-- public/index.html --
+<html><body>hello</body></html>