Spaces:
Running
Running
Jeremiah Lowin commited on
Update `just` error message (#1483)
Browse files
.github/workflows/run-static.yml
CHANGED
|
@@ -70,14 +70,14 @@ jobs:
|
|
| 70 |
echo "Files that were updated:"
|
| 71 |
git diff --name-only docs/python-sdk/
|
| 72 |
echo ""
|
| 73 |
-
echo "Run
|
| 74 |
exit 1
|
| 75 |
fi
|
| 76 |
|
| 77 |
# Check if docs.json content changed (ignoring formatting)
|
| 78 |
if ! jq --sort-keys . docs/docs.json.orig | diff -q - <(jq --sort-keys . docs/docs.json) > /dev/null 2>&1; then
|
| 79 |
echo "❌ docs.json content has changed!"
|
| 80 |
-
echo "Run
|
| 81 |
exit 1
|
| 82 |
fi
|
| 83 |
|
|
|
|
| 70 |
echo "Files that were updated:"
|
| 71 |
git diff --name-only docs/python-sdk/
|
| 72 |
echo ""
|
| 73 |
+
echo "Run `just api-ref-all` to regenerate the SDK docs, then commit the changes. Note: you may need to install `just` (https://github.com/casey/just)"
|
| 74 |
exit 1
|
| 75 |
fi
|
| 76 |
|
| 77 |
# Check if docs.json content changed (ignoring formatting)
|
| 78 |
if ! jq --sort-keys . docs/docs.json.orig | diff -q - <(jq --sort-keys . docs/docs.json) > /dev/null 2>&1; then
|
| 79 |
echo "❌ docs.json content has changed!"
|
| 80 |
+
echo "Run `just api-ref-all` to regenerate the SDK docs, then commit the changes. Note: you may need to install `just` (https://github.com/casey/just)"
|
| 81 |
exit 1
|
| 82 |
fi
|
| 83 |
|