We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee16003 commit 4db14d7Copy full SHA for 4db14d7
1 file changed
.github/workflows/release.yml
@@ -99,7 +99,13 @@ jobs:
99
for pkg in packages/*/; do
100
if [ -f "$pkg/package.json" ] && [ "$(jq -r '.private // false' "$pkg/package.json")" != "true" ]; then
101
echo "Publishing $pkg..."
102
- (cd "$pkg" && npm publish --provenance --access public)
+ cd "$pkg"
103
+ # Use yarn pack to resolve workspace:* dependencies
104
+ yarn pack -o package.tgz
105
+ # Use npm publish for OIDC provenance support
106
+ npm publish package.tgz --provenance --access public
107
+ rm package.tgz
108
+ cd - > /dev/null
109
fi
110
done
111
0 commit comments