We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6828838 commit 6945dc2Copy full SHA for 6945dc2
.github/workflows/pylibfranka-docs.yml
@@ -64,6 +64,7 @@ jobs:
64
# Fallback to pylibfranka version if no tag found
65
VERSION=$(python3 -c "import pylibfranka; print(pylibfranka.__version__)")
66
fi
67
+ echo "Building documentation for version: $VERSION"
68
69
# Build documentation
70
make clean
@@ -72,6 +73,10 @@ jobs:
72
73
# Prepare output directory with pylibfranka subfolder
74
mkdir -p /workspace/docs_output/pylibfranka/${VERSION}
75
cp -r _build/html/* /workspace/docs_output/pylibfranka/${VERSION}/
76
+
77
+ # Also copy to 'latest' directory for easy access
78
+ mkdir -p /workspace/docs_output/pylibfranka/latest
79
+ cp -r _build/html/* /workspace/docs_output/pylibfranka/latest/
80
81
- name: Deploy to GitHub Pages
82
uses: peaceiris/actions-gh-pages@v3
0 commit comments