Skip to content

Commit a4fccd5

Browse files
committed
chore(sdk,cli): move packages to npm and make them public
1 parent 916e12d commit a4fccd5

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,10 @@ jobs:
149149
env:
150150
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
151151
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
152-
NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
152+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
153153
working-directory: packages/cli
154154
run: npx semantic-release
155+
155156
codeql:
156157
if: (!contains(github.event.head_commit.message, 'skip:ci'))
157158
uses: ./.github/workflows/_codeql.yml

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"LICENSE"
1515
],
1616
"publishConfig": {
17-
"registry": "https://npm.pkg.github.com",
18-
"access": "restricted"
17+
"registry": "https://registry.npmjs.org",
18+
"access": "public"
1919
},
2020
"scripts": {
2121
"build": "nx build",

packages/sdk/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"LICENSE"
2121
],
2222
"publishConfig": {
23-
"registry": "https://npm.pkg.github.com",
24-
"access": "restricted"
23+
"registry": "https://registry.npmjs.org",
24+
"access": "public"
2525
},
2626
"scripts": {
2727
"build": "nx build",

0 commit comments

Comments
 (0)