Skip to content

Commit 7ae75ed

Browse files
committed
fix: update org name from bitsocialhq to bitsocialnet across all references
GHCR has no redirect for renamed orgs, causing Docker push to fail with "owner not found". Updates all references in CI, docs, compose files, install script, and package metadata.
1 parent e3b3bd4 commit 7ae75ed

File tree

8 files changed

+28
-28
lines changed

8 files changed

+28
-28
lines changed

.github/docker-compose.ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CI-only: full compose without sysctls (GitHub Actions doesn't allow them)
22
services:
33
bitsocial:
4-
image: ${BITSOCIAL_IMAGE:-ghcr.io/bitsocialhq/bitsocial-cli:latest}
4+
image: ${BITSOCIAL_IMAGE:-ghcr.io/bitsocialnet/bitsocial-cli:latest}
55
container_name: bitsocial
66
restart: unless-stopped
77
stop_grace_period: 30s

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
id: meta
136136
uses: docker/metadata-action@v5
137137
with:
138-
images: ghcr.io/bitsocialhq/bitsocial-cli
138+
images: ghcr.io/bitsocialnet/bitsocial-cli
139139
tags: |
140140
type=semver,pattern={{version}},value=${{ steps.previoustag.outputs.tag }}
141141
type=semver,pattern={{major}}.{{minor}},value=${{ steps.previoustag.outputs.tag }}

README.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,27 @@ Bitsocial is p2p and decentralized social media protocol built completely with I
3535
### For Linux/MacOS
3636

3737
```sh-session
38-
curl https://raw.githubusercontent.com/bitsocialhq/bitsocial-cli/master/bin/install.sh | sh
38+
curl https://raw.githubusercontent.com/bitsocialnet/bitsocial-cli/master/bin/install.sh | sh
3939
```
4040

4141
#### If you want to install a specific bitsocial-cli version
4242

4343
```sh-session
44-
curl https://raw.githubusercontent.com/bitsocialhq/bitsocial-cli/master/bin/install.sh | sh -s 0.14.4
44+
curl https://raw.githubusercontent.com/bitsocialnet/bitsocial-cli/master/bin/install.sh | sh -s 0.14.4
4545
```
4646

4747
If you get `libfontconfig dependency error`, then you need to install libfontconfig by running `sudo apt install -y libfontconfig1 fontconfig libfontconfig1-dev libfontconfig`
4848

4949
### For Windows
5050

51-
For Windows, You need to install [vc-redist](https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist?view=msvc-170) first. After you install `vc-redist`, download the installer of [bitsocial](https://github.com/bitsocialhq/bitsocial-cli/releases/latest/download/bitsocial_installer_win32_x64.exe) and next your way to the end
51+
For Windows, You need to install [vc-redist](https://learn.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist?view=msvc-170) first. After you install `vc-redist`, download the installer of [bitsocial](https://github.com/bitsocialnet/bitsocial-cli/releases/latest/download/bitsocial_installer_win32_x64.exe) and next your way to the end
5252

5353
### Build your Bitsocial executable manually (optional)
5454

5555
In case the installation script is not working for you or you just want to build the source code directly. First, you need to have `NodeJS 22` and `npm` installed
5656

5757
```
58-
git clone https://github.com/bitsocialhq/bitsocial-cli
58+
git clone https://github.com/bitsocialnet/bitsocial-cli
5959
cd bitsocial-cli
6060
npm ci
6161
npm run build
@@ -146,7 +146,7 @@ Debug and trace logs are written only to the log file, not to stdout, so `docker
146146
```yaml
147147
services:
148148
bitsocial:
149-
image: ghcr.io/bitsocialhq/bitsocial-cli:latest
149+
image: ghcr.io/bitsocialnet/bitsocial-cli:latest
150150
container_name: bitsocial
151151
restart: unless-stopped
152152
ports:
@@ -181,7 +181,7 @@ docker run -d \
181181
-p 6473:6473 \
182182
-v bitsocial-data:/data \
183183
-v bitsocial-logs:/logs \
184-
ghcr.io/bitsocialhq/bitsocial-cli:latest
184+
ghcr.io/bitsocialnet/bitsocial-cli:latest
185185
```
186186

187187
With a custom auth key:
@@ -196,7 +196,7 @@ docker run -d \
196196
-v bitsocial-data:/data \
197197
-v bitsocial-logs:/logs \
198198
-e PKC_RPC_AUTH_KEY=my-secret-key \
199-
ghcr.io/bitsocialhq/bitsocial-cli:latest
199+
ghcr.io/bitsocialnet/bitsocial-cli:latest
200200
```
201201

202202
### Building the Docker image locally
@@ -341,7 +341,7 @@ EXAMPLES
341341
$ bitsocial challenge install ./my-local-challenge
342342
```
343343

344-
_See code: [src/cli/commands/challenge/install.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/challenge/install.ts)_
344+
_See code: [src/cli/commands/challenge/install.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/challenge/install.ts)_
345345

346346
## `bitsocial challenge list`
347347

@@ -364,7 +364,7 @@ EXAMPLES
364364
$ bitsocial challenge list -q
365365
```
366366

367-
_See code: [src/cli/commands/challenge/list.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/challenge/list.ts)_
367+
_See code: [src/cli/commands/challenge/list.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/challenge/list.ts)_
368368

369369
## `bitsocial challenge remove NAME`
370370

@@ -389,7 +389,7 @@ EXAMPLES
389389
$ bitsocial challenge remove @scope/my-challenge
390390
```
391391

392-
_See code: [src/cli/commands/challenge/remove.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/challenge/remove.ts)_
392+
_See code: [src/cli/commands/challenge/remove.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/challenge/remove.ts)_
393393

394394
## `bitsocial community create`
395395

@@ -414,7 +414,7 @@ EXAMPLES
414414
$ bitsocial community create --title 'Hello Plebs' --description 'Welcome'
415415
```
416416

417-
_See code: [src/cli/commands/community/create.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/community/create.ts)_
417+
_See code: [src/cli/commands/community/create.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/community/create.ts)_
418418

419419
## `bitsocial community delete ADDRESSES`
420420

@@ -439,7 +439,7 @@ EXAMPLES
439439
$ bitsocial community delete 12D3KooWG3XbzoVyAE6Y9vHZKF64Yuuu4TjdgQKedk14iYmTEPWu
440440
```
441441

442-
_See code: [src/cli/commands/community/delete.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/community/delete.ts)_
442+
_See code: [src/cli/commands/community/delete.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/community/delete.ts)_
443443

444444
## `bitsocial community edit ADDRESS`
445445

@@ -491,7 +491,7 @@ EXAMPLES
491491
$ bitsocial community edit plebbit.bso --settings.fetchThumbnailUrls=false
492492
```
493493

494-
_See code: [src/cli/commands/community/edit.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/community/edit.ts)_
494+
_See code: [src/cli/commands/community/edit.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/community/edit.ts)_
495495

496496
## `bitsocial community get ADDRESS`
497497

@@ -516,7 +516,7 @@ EXAMPLES
516516
$ bitsocial community get 12D3KooWG3XbzoVyAE6Y9vHZKF64Yuuu4TjdgQKedk14iYmTEPWu
517517
```
518518

519-
_See code: [src/cli/commands/community/get.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/community/get.ts)_
519+
_See code: [src/cli/commands/community/get.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/community/get.ts)_
520520

521521
## `bitsocial community list`
522522

@@ -539,7 +539,7 @@ EXAMPLES
539539
$ bitsocial community list
540540
```
541541

542-
_See code: [src/cli/commands/community/list.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/community/list.ts)_
542+
_See code: [src/cli/commands/community/list.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/community/list.ts)_
543543

544544
## `bitsocial community start ADDRESSES`
545545

@@ -568,7 +568,7 @@ EXAMPLES
568568
$ bitsocial community start $(bitsocial community list -q)
569569
```
570570

571-
_See code: [src/cli/commands/community/start.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/community/start.ts)_
571+
_See code: [src/cli/commands/community/start.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/community/start.ts)_
572572

573573
## `bitsocial community stop ADDRESSES`
574574

@@ -593,7 +593,7 @@ EXAMPLES
593593
$ bitsocial community stop Qmb99crTbSUfKXamXwZBe829Vf6w5w5TktPkb6WstC9RFW
594594
```
595595

596-
_See code: [src/cli/commands/community/stop.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/community/stop.ts)_
596+
_See code: [src/cli/commands/community/stop.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/community/stop.ts)_
597597

598598
## `bitsocial daemon`
599599

@@ -635,7 +635,7 @@ EXAMPLES
635635
$ bitsocial daemon --chainProviderUrls viem --chainProviderUrls https://mainnet.infura.io/v3/YOUR_KEY
636636
```
637637

638-
_See code: [src/cli/commands/daemon.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/daemon.ts)_
638+
_See code: [src/cli/commands/daemon.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/daemon.ts)_
639639

640640
## `bitsocial help [COMMAND]`
641641

@@ -691,7 +691,7 @@ EXAMPLES
691691
$ bitsocial logs --since 1h -f
692692
```
693693

694-
_See code: [src/cli/commands/logs.ts](https://github.com/bitsocialhq/bitsocial-cli/blob/v0.19.39/src/cli/commands/logs.ts)_
694+
_See code: [src/cli/commands/logs.ts](https://github.com/bitsocialnet/bitsocial-cli/blob/v0.19.38/src/cli/commands/logs.ts)_
695695
<!-- commandsstop -->
696696

697697
## Contribution

bin/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ bitsocial_compressed_file_name="bitsocial_${suffix}.tar.gz"
1414
VERSION=${1:-latest}
1515
# Construct URI based on version
1616
if [ "$VERSION" = "latest" ]; then
17-
bitsocial_uri="https://github.com/bitsocialhq/bitsocial-cli/releases/latest/download/${bitsocial_compressed_file_name}"
17+
bitsocial_uri="https://github.com/bitsocialnet/bitsocial-cli/releases/latest/download/${bitsocial_compressed_file_name}"
1818
else
19-
bitsocial_uri="https://github.com/bitsocialhq/bitsocial-cli/releases/download/v${VERSION}/${bitsocial_compressed_file_name}"
19+
bitsocial_uri="https://github.com/bitsocialnet/bitsocial-cli/releases/download/v${VERSION}/${bitsocial_compressed_file_name}"
2020
fi
2121
echo "Downloading bitsocial-cli, version: ${VERSION}"
2222
curl --fail --location --progress-bar --output "$bitsocial_compressed_file_name" "$bitsocial_uri"

ci-bin/download-web-uis.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Readable } from "stream";
66
import decompress from "decompress";
77

88
(async () => {
9-
const webuiGithubRepos = ["plebbit/seedit", "plebbit/plebones", "bitsocialhq/5chan"];
9+
const webuiGithubRepos = ["plebbit/seedit", "plebbit/plebones", "bitsocialnet/5chan"];
1010
console.log("Github repos to download", webuiGithubRepos);
1111
const githubToken: string | undefined = process.env["GITHUB_TOKEN"]; // we need a token to avoid getting rate limited in CI
1212
if (githubToken) console.log("github token length", githubToken.length);

docker-compose.example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
services:
1616
bitsocial:
17-
image: ${BITSOCIAL_IMAGE:-ghcr.io/bitsocialhq/bitsocial-cli:latest}
17+
image: ${BITSOCIAL_IMAGE:-ghcr.io/bitsocialnet/bitsocial-cli:latest}
1818
container_name: bitsocial
1919
restart: unless-stopped
2020
ports:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
services:
1616
bitsocial:
17-
image: ${BITSOCIAL_IMAGE:-ghcr.io/bitsocialhq/bitsocial-cli:latest}
17+
image: ${BITSOCIAL_IMAGE:-ghcr.io/bitsocialnet/bitsocial-cli:latest}
1818
container_name: bitsocial
1919
restart: unless-stopped
2020
stop_grace_period: 30s

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "0.19.39",
44
"description": "Command line interface to BitSocial API",
55
"types": "./dist/index.d.ts",
6-
"homepage": "https://github.com/bitsocialhq/bitsocial-cli",
7-
"repository": "git@github.com:bitsocialhq/bitsocial-cli.git",
6+
"homepage": "https://github.com/bitsocialnet/bitsocial-cli",
7+
"repository": "git@github.com:bitsocialnet/bitsocial-cli.git",
88
"author": "Bitsocial Labs",
99
"license": "GPL-3.0-or-later",
1010
"type": "module",

0 commit comments

Comments
 (0)