/
githubmirror
/
hugo
Обзор
Документация
Войти
/
githubmirror
/
hugo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
testscripts/withdeploy/deploy.txt
24 строки
731 B
Joe Mooring
all: Change site to project where appropriate
12 фев 2026, 22:52
Не верифицирован
12 фев 2026, 22:52
19ab3f5
Код
Авторство
О чём код?
# Test the deploy command. hugo deploy -h stdout 'Deploy your project 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>