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 e37cbfa commit 771815fCopy full SHA for 771815f
.github/workflows/release.yml
@@ -29,6 +29,12 @@ jobs:
29
echo "released=true" >> "$GITHUB_OUTPUT"
30
31
npm run typedoc
32
+
33
+ # Remove any unnecessary files or directories that might contain symlinks or large files
34
+ # For example, remove node_modules from 'examples' to avoid copying symlinks
35
+ rm -rf examples/node_modules
36
37
+ # Copy only the required content to the docs folder
38
cp -rf dist examples docs
39
fi
40
env:
0 commit comments