Browse Source

Update .github/workflows/release-packages.yml

Co-authored-by: Copilot <[email protected]>
pull/787/head
Dan Ditomaso 11 months ago
committed by GitHub
parent
commit
a696623a40
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      .github/workflows/release-packages.yml

5
.github/workflows/release-packages.yml

@ -96,7 +96,10 @@ jobs:
echo "Publishing $dir to JSR via OIDC…"
cd "$dir"
[ -d dist ] || pnpm run build
npx --yes jsr publish || echo "JSR publish failed for $dir"
if ! npx --yes jsr publish 2>&1 | tee jsr_publish.log; then
echo "JSR publish failed for $dir. Error output:"
cat jsr_publish.log
fi
cd - >/dev/null
fi
done

Loading…
Cancel
Save