We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7f94aa commit 277cb53Copy full SHA for 277cb53
1 file changed
.github/workflows/publish.yml
@@ -29,13 +29,20 @@ jobs:
29
registry-url: "https://registry.npmjs.org"
30
cache: npm
31
32
+ - name: Update npm for OIDC publishing
33
+ run: |
34
+ npm install -g npm@latest
35
+ npm --version
36
+
37
- name: Install dependencies
38
run: npm ci
39
40
- name: Verify packages
41
run: npm run check
42
43
- name: Publish unpublished workspace packages
44
+ env:
45
+ NPM_CONFIG_PROVENANCE: "true"
46
run: |
47
set -euo pipefail
48
@@ -68,5 +75,5 @@ jobs:
68
75
fi
69
76
70
77
echo "Publishing ${package}@${version}..."
71
- npm --workspace "$package" publish --access public --provenance
78
+ npm --workspace "$package" publish --access public --loglevel verbose
72
79
done < /tmp/pi-workspaces.tsv
0 commit comments