Skip to content

Commit 889273d

Browse files
jkebingerclaude
andcommitted
chore: configure npmPublishProvenance in .yarnrc.yml
Remove --provenance flags from publish commands as they are now handled automatically by Yarn configuration. Changes: - Replace npmAuthToken with npmPublishProvenance: true in .yarnrc.yml - Remove --provenance flags from yarn npm publish commands 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3eca924 commit 889273d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ jobs:
7676
- name: Publish to npm
7777
run: |
7878
if [ "${{ needs.check-version.outputs.is-prerelease }}" == "true" ]; then
79-
yarn npm publish --provenance --access public --tag ${{ needs.check-version.outputs.npm-tag }}
79+
yarn npm publish --access public --tag ${{ needs.check-version.outputs.npm-tag }}
8080
else
81-
yarn npm publish --provenance --access public
81+
yarn npm publish --access public
8282
fi
8383
8484
create-release:

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22
npmRegistryServer: 'https://registry.npmjs.org'
3-
npmAuthToken: '${NPM_AUTH_TOKEN}'
3+
npmPublishProvenance: true

0 commit comments

Comments
 (0)