We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 262484b commit 12031a5Copy full SHA for 12031a5
1 file changed
.github/workflows/build-docs.yml
@@ -153,6 +153,10 @@ jobs:
153
run: |
154
pushd cuda_python/docs/
155
./build_all_docs.sh $DOC_ACTION
156
+ if [[ -z "$DOC_ACTION" ]]; then
157
+ # At release time, we don't want to update the latest docs
158
+ rm -rf build/html/latest
159
+ fi
160
ls -l build
161
popd
162
mv cuda_python/docs/build/html/* artifacts/docs/
@@ -165,8 +169,11 @@ jobs:
165
169
COMPONENT=$(echo "${{ inputs.component }}" | tr '-' '_')
166
170
pushd ${COMPONENT}/docs/
167
171
./build_docs.sh $DOC_ACTION
172
173
174
175
168
176
- rm -rf build/html/latest
177
178
mv ${COMPONENT}/docs/build/html/* artifacts/docs/
179
0 commit comments