Skip to content

Commit

Permalink
ci: fix move docs that did not exist (#5319)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackmin801 authored Oct 27, 2022
1 parent ebd61eb commit 4d15092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/force-docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Moving old doc versions
run: |
cd docs
for i in $(cat _versions.json | jq '.[].version' | tr -d '"'); do if [ -d "$i" ]; then; mv "$i" /tmp/gen-html; fi; done
for i in $(cat _versions.json | jq '.[].version' | tr -d '"'); do if [ -d "$i" ]; then mv "$i" /tmp/gen-html; fi; done
- name: Swap in new docs
run: |
rm -rf ./docs
Expand Down

0 comments on commit 4d15092

Please sign in to comment.