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 337e811 commit b79b421Copy full SHA for b79b421
.github/workflows/documentation.yml
@@ -58,9 +58,9 @@ jobs:
58
rm -rf docs-out/.git;
59
rm -rf docs-out/main;
60
rm -rf docs-out/protocol-beta;
61
- git tag -l --sort=-v:refname | tail -n +10 | xargs rm -rf;
+ git tag -l --sort=-v:refname | tail -n +10 | xargs -I {} rm -rf docs-out/{};
62
63
- for tag in $(echo "main"; echo "protocol-beta"; git tag);
+ for tag in $(echo "main"; echo "protocol-beta"; git tag -l --sort=-v:refname | head -10);
64
do
65
echo "⏳ Generating documentation for "$tag" release.";
66
0 commit comments