Skip to content

Commit 4c5071b

Browse files
committed
fix(ci): remove --provenance from npm publish
npm provenance requires a public GitHub repo. The repo is currently set to "internal" visibility, which causes E422 on publish. Remove --provenance until the repo is made public.
1 parent 60ec575 commit 4c5071b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,27 +25,27 @@ jobs:
2525
- run: bun run build
2626

2727
- name: Publish @hyperframes/core
28-
run: npm --workspace packages/core publish --access public --provenance --no-git-checks
28+
run: npm --workspace packages/core publish --access public --no-git-checks
2929
env:
3030
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3131

3232
- name: Publish @hyperframes/engine
33-
run: npm --workspace packages/engine publish --access public --provenance --no-git-checks
33+
run: npm --workspace packages/engine publish --access public --no-git-checks
3434
env:
3535
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3636

3737
- name: Publish @hyperframes/producer
38-
run: npm --workspace packages/producer publish --access public --provenance --no-git-checks
38+
run: npm --workspace packages/producer publish --access public --no-git-checks
3939
env:
4040
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4141

4242
- name: Publish @hyperframes/studio
43-
run: npm --workspace packages/studio publish --access public --provenance --no-git-checks
43+
run: npm --workspace packages/studio publish --access public --no-git-checks
4444
env:
4545
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
4646

4747
- name: Publish hyperframes (CLI)
48-
run: npm --workspace packages/cli publish --access public --provenance --no-git-checks
48+
run: npm --workspace packages/cli publish --access public --no-git-checks
4949
env:
5050
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5151

0 commit comments

Comments
 (0)