Dan Ditomaso
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
1 deletions
-
.github/workflows/release-packages.yml
|
|
@ -96,7 +96,10 @@ jobs: |
|
|
echo "Publishing $dir to JSR via OIDC…" |
|
|
echo "Publishing $dir to JSR via OIDC…" |
|
|
cd "$dir" |
|
|
cd "$dir" |
|
|
[ -d dist ] || pnpm run build |
|
|
[ -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 |
|
|
cd - >/dev/null |
|
|
fi |
|
|
fi |
|
|
done |
|
|
done |
|
|
|