From 4d2d9fdddbd4a97b4cb36254d995a3645a2d6018 Mon Sep 17 00:00:00 2001 From: Nathan Pierce Date: Tue, 21 May 2024 10:30:12 -0500 Subject: [PATCH] added generate --- .github/workflows/ensure-docs-compiled.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ensure-docs-compiled.yaml b/.github/workflows/ensure-docs-compiled.yaml index 33a143c..00c3620 100644 --- a/.github/workflows/ensure-docs-compiled.yaml +++ b/.github/workflows/ensure-docs-compiled.yaml @@ -9,14 +9,14 @@ jobs: uses: actions/checkout@v2 - uses: actions/setup-go@v4 - shell: bash - run: make generate-docs + run: make generate - shell: bash run: | if [[ -z "$(git status -s)" ]]; then echo "OK" else echo "Docs have been updated, but the compiled docs have not been committed." - echo "Run 'make generate-docs', and commit the result to resolve this error." + echo "Run 'make generate', and commit the result to resolve this error." exit 1 fi