Skip to content
This repository was archived by the owner on Feb 5, 2026. It is now read-only.

Commit 910257d

Browse files
committed
Fix publishing to GH packages in CI
The issue was that package.json specified the access as public, which is not the case for our private GH packages
1 parent c5f54f9 commit 910257d

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.github/workflows/release-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
id: changesets
4646
uses: changesets/action@v1
4747
with:
48-
publish: yarn changeset publish
48+
publish: yarn changeset publish --access public
4949
env:
5050
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
5151
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@
3838
},
3939
"homepage": "https://github.com/Multiverse-io/cari#readme",
4040
"packageManager": "yarn@4.7.0",
41-
"publishConfig": {
42-
"registry": "https://registry.npmjs.org/",
43-
"access": "public"
44-
},
4541
"dependencies": {
4642
"@inquirer/prompts": "^7.4.0",
4743
"chalk": "^5.4.1",

0 commit comments

Comments
 (0)