Skip to content

Commit 5928182

Browse files
authored
Merge pull request #147 from sankhesh/npm_publish
publish: add explicit registry url
2 parents 4b02ff3 + ea4b35d commit 5928182

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
pull_request:
55
branches:
66
- master
7-
- beta
87

98
concurrency:
109
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number }}

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release
1+
name: GHPages
22
on:
33
push:
44
branches:

.github/workflows/publish.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
uses: actions/setup-node@v4
2525
with:
2626
node-version: 24
27+
registry-url: https://registry.npmjs.org/
2728
- name: Install dependencies
2829
run: npm ci
2930
- name: Build

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,12 @@
9090
"plugins": [
9191
"@semantic-release/commit-analyzer",
9292
"@semantic-release/release-notes-generator",
93-
"@semantic-release/npm",
93+
[
94+
"@semantic-release/npm",
95+
{
96+
"registry": "https://registry.npmjs.org/"
97+
}
98+
],
9499
"@semantic-release/github"
95100
]
96101
},

0 commit comments

Comments
 (0)