diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d025368..e39d69a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,6 @@ on: pull_request: branches: - master - - beta concurrency: group: ci-${{ github.workflow }}-${{ github.event.pull_request.number }} diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 8c9fe1f..4dd2068 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -1,4 +1,4 @@ -name: Release +name: GHPages on: push: branches: diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 197683a..fd26713 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -24,6 +24,7 @@ jobs: uses: actions/setup-node@v4 with: node-version: 24 + registry-url: https://registry.npmjs.org/ - name: Install dependencies run: npm ci - name: Build diff --git a/package.json b/package.json index 65e21b7..65989e9 100644 --- a/package.json +++ b/package.json @@ -90,7 +90,12 @@ "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", - "@semantic-release/npm", + [ + "@semantic-release/npm", + { + "registry": "https://registry.npmjs.org/" + } + ], "@semantic-release/github" ] },