fix: replace sparse-checkout with shallow clone for silo docs #126
Reference in New Issue
Block a user
Delete Branch "fix/silo-docs-sparse-checkout"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Fixes
fatal: 'README.md' is not a directoryerror in the silo docs fetch step.Changes
Replaces
git clone --filter=blob:none --sparse+git sparse-checkout setwith a simplegit clone --depth 1in both:docs.ymlsync-silo-docs.ymlgit sparse-checkout setdoesn't support individual files (only directories), so it fails onREADME.md,ROADMAP.md, andfrontend-spec.md. A shallow clone is simpler and the silo repo is small enough that this is fine.Related Issues
Follow-up to #125 / #122