baldm0mma/ remove cue gen and verification step

This commit is contained in:
jev forsberg
2025-03-11 16:46:08 -06:00
parent 12e1ae0751
commit ff74cb954f
+6 -22
View File
@@ -1,4 +1,4 @@
name: Lint and Build Documentation
name: Documentation
on:
pull_request:
@@ -31,25 +31,9 @@ jobs:
NODE_OPTIONS: --max_old_space_size=8192
- name: Build docs website
uses: docker://grafana/docs-base:latest
with:
entrypoint: /bin/sh
args: |
-c "mkdir -p /github/workspace/hugo/content/docs/grafana/latest && \
echo -e '---\\nredirectURL: /docs/grafana/latest/\\ntype: redirect\\nversioned: true\\n---\\n' > /github/workspace/hugo/content/docs/grafana/_index.md && \
cp -r /github/workspace/docs/sources/* /github/workspace/hugo/content/docs/grafana/latest/ && \
cd /github/workspace/hugo && make prod"
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.24.1'
- name: Verify generated CUE code
run: |
make gen-cue
if [ -n "$(git diff)" ]; then
echo "Generated CUE code is not in sync with its inputs. Please run 'make gen-cue' and commit the changes."
git diff
exit 1
fi
mkdir -p hugo/content/docs/grafana/latest
echo -e '---\nredirectURL: /docs/grafana/latest/\ntype: redirect\nversioned: true\n---\n' > hugo/content/docs/grafana/_index.md
cp -r docs/sources/* hugo/content/docs/grafana/latest/
docker run --rm -v $(pwd):/src grafana/docs-base:latest /bin/sh -c "cd /src/hugo && make prod"