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 83989d0 commit 3b0f604Copy full SHA for 3b0f604
scripts/deploy/publish-docs-content.sh
@@ -84,6 +84,11 @@ echo "Removed everything from the docs-content repository. Copying package outpu
84
# Copy the package output to the docs-content repository.
85
cp -R ${examplesPackagePath}/* ${docsContentPath}
86
87
+# Update permissions for the copied "npm_package". Bazel makes these files readonly
88
+# in the "bazel-out", but for publishing, they should be writable. Also it's necessary
89
+# in order to be able to update the "package.json" version
90
+chmod -R u+w ${docsContentPath}
91
+
92
echo "Successfully copied package output into the docs-content repository."
93
94
if [[ $(git ls-remote origin "refs/tags/${buildTagName}") ]]; then
0 commit comments