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.

try to fix docs build

bdbch (May 31, 2026, 4:47 AM +0200) b2ef4a01 290fc3cc

+3 -11
+3 -11
.tangled/workflows/pages.yml
··· 9 9 - nodejs_24 10 10 - pnpm 11 11 - gnused 12 - - openssh 13 12 14 13 environment: 15 14 CI: 'true' ··· 26 25 27 26 - name: 'Push to tangled-pages branch' 28 27 command: | 29 - # Tangled CI only has origin via HTTPS. Pushes require SSH. 30 - # Extract the repo path from the HTTPS URL and convert to SSH format. 31 - REMOTE_URL=$(git remote get-url origin) 32 - # e.g. https://knot1.tangled.sh/did:plc:.../ → git@tangled.org:did:plc:... 33 - REMOTE_URL="git@tangled.org:${REMOTE_URL#https://*/}" 34 - REMOTE_URL="${REMOTE_URL%/}" 35 28 cd apps/docs/out 36 - git init 37 - git checkout --orphan tangled-pages 29 + git init --initial-branch=tangled-pages 38 30 git add -A 39 31 git config user.name "tangled-bot" 40 32 git config user.email "bot@tangled.sh" 41 - git commit -m "deploy: ${TANGLED_COMMIT_SHA:-$(date -u +%Y-%m-%dT%H:%M:%SZ)}" 42 - git remote add origin "$REMOTE_URL" 33 + git commit -m "deploy: $TANGLED_SHA" 34 + git remote add origin "$TANGLED_REPO_URL" 43 35 git push origin tangled-pages --force