Skip to content

Bump github.com/go-git/go-git/v5 from 5.11.0 to 5.12.0 #70

Bump github.com/go-git/go-git/v5 from 5.11.0 to 5.12.0

Bump github.com/go-git/go-git/v5 from 5.11.0 to 5.12.0 #70

name: Ensure Docs are Compiled
on:
push:
jobs:
ensure-docs-compiled:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
- shell: bash
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 and commit the result to resolve this error."
exit 1
fi