Skip to content

Commit 6dc0dd2

Browse files
committed
fix: correct repository URLs and GitHub organization
- Fix repository URLs from bitwild to btwld to match actual repo - Update package.json repository, homepage, and bugs URLs - Update README badge URLs - Update GitHub Actions scope for packages - Update release config for correct GitHub Packages scope - Add explicit repositoryUrl to semantic-release config BREAKING CHANGE: Repository organization changed from bitwild to btwld
1 parent 0338aa5 commit 6dc0dd2

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
node-version: 22
4141
registry-url: "https://npm.pkg.github.com"
42-
scope: "@bitwild"
42+
scope: "@btwld"
4343

4444
- name: Install dependencies
4545
run: pnpm install

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# nestjs-worker
55

66
[![npm version](https://badge.fury.io/js/nestjs-worker.svg)](https://badge.fury.io/js/nestjs-worker)
7-
[![Test](https://github.com/bitwild/nestjs-worker/workflows/CI/badge.svg)](https://github.com/bitwild/nestjs-worker/actions?query=workflow%3ACI)
7+
[![Test](https://github.com/btwld/nestjs-worker/workflows/CI/badge.svg)](https://github.com/btwld/nestjs-worker/actions?query=workflow%3ACI)
88
[![License: BSD-3-Clause](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
99

1010
</div>

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
],
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/bitwild/nestjs-worker.git"
17+
"url": "https://github.com/btwld/nestjs-worker.git"
1818
},
19-
"homepage": "https://github.com/bitwild/nestjs-worker#readme",
19+
"homepage": "https://github.com/btwld/nestjs-worker#readme",
2020
"bugs": {
21-
"url": "https://github.com/bitwild/nestjs-worker/issues"
21+
"url": "https://github.com/btwld/nestjs-worker/issues"
2222
},
2323
"keywords": [
2424
"nestjs",

release.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
module.exports = {
2+
repositoryUrl: "https://github.com/btwld/nestjs-worker.git",
23
branches: [
34
"main",
45
"master",
@@ -30,7 +31,7 @@ module.exports = {
3031
"@semantic-release/exec",
3132
{
3233
publishCmd:
33-
'cp package.json package.json.bak && jq \'.name = "@bitwild/nestjs-worker" | .publishConfig.registry = "https://npm.pkg.github.com"\' package.json > package.json.tmp && mv package.json.tmp package.json && npm publish && mv package.json.bak package.json',
34+
'cp package.json package.json.bak && jq \'.name = "@btwld/nestjs-worker" | .publishConfig.registry = "https://npm.pkg.github.com"\' package.json > package.json.tmp && mv package.json.tmp package.json && npm publish && mv package.json.bak package.json',
3435
},
3536
],
3637
[

0 commit comments

Comments
 (0)