diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 67fb4f6..105aa27 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -131,4 +131,7 @@ jobs: destination-branch: main git-user: terraform-docs-bot git-user-email: bot@terraform-docs.io - git-commit-message: "Update website content" + git-commit-message: |- + Update website content + + from: https://github.com/terraform-docs/terraform-docs/commit/${{ github.sha }} diff --git a/netlify.toml b/netlify.toml index 18d5baa..915ff0a 100644 --- a/netlify.toml +++ b/netlify.toml @@ -2,9 +2,14 @@ publish = "site/public" [build.environment] - HUGO_VERSION = "0.80.0" + HUGO_VERSION = "0.87.0" NODE_VERSION = "15.5.1" NPM_VERSION = "7.3.0" [context.deploy-preview] - command = "./scripts/docs/prepare-site.sh && cd site && npm install && hugo -b ${DEPLOY_PRIME_URL} --gc" + command = """ + ./scripts/docs/prepare-site.sh + cd site + npm install + hugo -b ${DEPLOY_PRIME_URL} --gc + """