diff options
Diffstat (limited to 'testscripts/commands/deploy.txt')
-rw-r--r-- | testscripts/commands/deploy.txt | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/testscripts/commands/deploy.txt b/testscripts/commands/deploy.txt deleted file mode 100644 index 2586f8b8f..000000000 --- a/testscripts/commands/deploy.txt +++ /dev/null @@ -1,24 +0,0 @@ -# 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> |