We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2444f34 commit 31587fcCopy full SHA for 31587fc
1 file changed
.github/workflows/docs.yml
@@ -52,12 +52,13 @@ jobs:
52
- name: Generate documentation
53
run: |
54
mkdir -p docs
55
- cp tools/gendocs.py /tmp/gendocs.py
56
for tag in ${{ steps.versions.outputs.tags }}; do
57
echo "=== Generating docs for $tag ==="
58
git checkout "$tag" -- src/cyaml.h README.md refs/ypath/spec.md 2>/dev/null || true
59
- uv run --with markdown python3 /tmp/gendocs.py "$tag"
60
- git checkout HEAD -- src/cyaml.h README.md refs/ypath/spec.md 2>/dev/null || true
+ git stash push -m "gendocs" -- tools/gendocs.py 2>/dev/null || true
+ git checkout HEAD -- tools/gendocs.py
+ uv run --with markdown python3 tools/gendocs.py "$tag"
61
+ git checkout "$tag" -- src/cyaml.h README.md refs/ypath/spec.md 2>/dev/null || true
62
done
63
64
- name: Push to site branch
0 commit comments