Rust based release manager for JS/TS monorepos, heavily inspired by Vite+ ❤️
publish changelog rust release bun pnpm changeset version bump node
0

Configure Feed

Select the types of activity you want to include in your feed.

fix pages

+5
+5
.tangled/workflows/pages.yml
··· 25 25 26 26 - name: 'Push to tangled-pages branch' 27 27 command: | 28 + # Tangled CI only has origin via HTTPS. Pushes require SSH. 29 + # Extract the repo path from the HTTPS URL and convert to SSH format. 28 30 REMOTE_URL=$(git remote get-url origin) 31 + # e.g. https://knot1.tangled.sh/did:plc:.../ → git@tangled.org:did:plc:... 32 + REMOTE_URL="git@tangled.org:${REMOTE_URL#https://*/}" 33 + REMOTE_URL="${REMOTE_URL%/}" 29 34 cd apps/docs/out 30 35 git init 31 36 git checkout --orphan tangled-pages