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 0f7ff98 commit 399bc83Copy full SHA for 399bc83
.github/workflows/documentation.yml
@@ -64,9 +64,9 @@ jobs:
64
rm -rf docs-out/.git;
65
rm -rf docs-out/main;
66
rm -rf docs-out/protocol-beta;
67
- git tag -l --sort=-v:refname | tail -n +10 | xargs -I {} rm -rf docs-out/{};
+ git tag -l --sort=-v:refname | grep -e "\d\+\.\d\+.0" | tail -n +10 | xargs -I {} rm -rf docs-out/{};
68
69
- for tag in $(echo "main"; echo "protocol-beta"; git tag -l --sort=-v:refname | head -10);
+ for tag in $(echo "main"; echo "protocol-beta"; git tag -l --sort=-v:refname | grep -e "\d\+\.\d\+.0" | head -10);
70
do
71
echo "⏳ Generating documentation for "$tag" release.";
72
0 commit comments