Skip to content

Commit e339677

Browse files
fix: correct repository URLs broken by PR #500 (#506)
PR #500 accidentally corrupted GitHub repository URLs by adding `ghcr.io/` to them (e.g., `github.com/ghcr.io/redis-developer/redisctl`). The `ghcr.io/` prefix is only valid for Docker image references, not GitHub repository URLs. This PR fixes: - GitHub repository URLs (remove errant `ghcr.io/`) - Homebrew tap references (`joshrotenberg/brew` → `redis-developer/homebrew-tap`) - Documentation URLs (`joshrotenberg.github.io` → `redis-developer.github.io`) - GHCR link in RELEASE.md checklist Files updated: - README.md - RELEASE.md - docs/src/getting-started/installation.md - docs/src/introduction.md - docs/src/presentation/slides.html 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent d10678d commit e339677

File tree

5 files changed

+31
-31
lines changed

5 files changed

+31
-31
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
55
[![Crates.io](https://img.shields.io/crates/v/redisctl.svg)](https://crates.io/crates/redisctl)
66
[![Documentation](https://docs.rs/redisctl/badge.svg)](https://docs.rs/redisctl)
7-
[![CI](https://github.com/ghcr.io/redis-developer/redisctl/actions/workflows/ci.yml/badge.svg)](https://github.com/ghcr.io/redis-developer/redisctl/actions/workflows/ci.yml)
8-
[![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)](https://github.com/ghcr.io/redis-developer/redisctl#license)
7+
[![CI](https://github.com/redis-developer/redisctl/actions/workflows/ci.yml/badge.svg)](https://github.com/redis-developer/redisctl/actions/workflows/ci.yml)
8+
[![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)](https://github.com/redis-developer/redisctl#license)
99

1010
```bash
1111
# Create a Redis Cloud subscription with one command
@@ -41,13 +41,13 @@ Managing Redis Cloud and Redis Enterprise through REST APIs means juggling curl
4141

4242
```bash
4343
# Homebrew (macOS/Linux)
44-
brew install joshrotenberg/brew/redisctl
44+
brew install redis-developer/homebrew-tap/redisctl
4545

4646
# Cargo
4747
cargo install redisctl
4848

4949
# Or download from releases
50-
# https://github.com/ghcr.io/redis-developer/redisctl/releases
50+
# https://github.com/redis-developer/redisctl/releases
5151
```
5252

5353
### 2. Configure
@@ -85,7 +85,7 @@ redisctl enterprise logs list --follow
8585

8686
**That's it!** You're ready to manage your Redis deployments.
8787

88-
[**Full Documentation →**](https://joshrotenberg.github.io/redisctl/)
88+
[**Full Documentation →**](https://redis-developer.github.io/redisctl/)
8989

9090
---
9191

@@ -264,7 +264,7 @@ redisctl cloud database get 67890 \
264264

265265
### Homebrew (macOS/Linux)
266266
```bash
267-
brew install joshrotenberg/brew/redisctl
267+
brew install redis-developer/homebrew-tap/redisctl
268268
```
269269

270270
### Cargo (Rust)
@@ -277,7 +277,7 @@ cargo install redisctl --features secure-storage
277277
```
278278

279279
### Binary Releases
280-
Download the latest release for your platform from [GitHub Releases](https://github.com/ghcr.io/redis-developer/redisctl/releases).
280+
Download the latest release for your platform from [GitHub Releases](https://github.com/redis-developer/redisctl/releases).
281281

282282
Binaries are available for:
283283
- macOS (Intel and Apple Silicon)
@@ -411,13 +411,13 @@ redisctl enterprise cluster get -o yaml
411411

412412
## Documentation
413413

414-
**[Complete Documentation](https://joshrotenberg.github.io/redisctl/)**
414+
**[Complete Documentation](https://redis-developer.github.io/redisctl/)**
415415

416-
- [Getting Started Guide](https://joshrotenberg.github.io/redisctl/getting-started/)
417-
- [Command Reference](https://joshrotenberg.github.io/redisctl/reference/)
418-
- [Configuration Guide](https://joshrotenberg.github.io/redisctl/configuration/)
419-
- [Workflow Examples](https://joshrotenberg.github.io/redisctl/workflows/)
420-
- [Troubleshooting](https://joshrotenberg.github.io/redisctl/troubleshooting/)
416+
- [Getting Started Guide](https://redis-developer.github.io/redisctl/getting-started/)
417+
- [Command Reference](https://redis-developer.github.io/redisctl/reference/)
418+
- [Configuration Guide](https://redis-developer.github.io/redisctl/configuration/)
419+
- [Workflow Examples](https://redis-developer.github.io/redisctl/workflows/)
420+
- [Troubleshooting](https://redis-developer.github.io/redisctl/troubleshooting/)
421421

422422
---
423423

@@ -433,11 +433,11 @@ Individual crate changelogs:
433433

434434
## Contributing
435435

436-
Contributions welcome! See our [Contributing Guide](https://joshrotenberg.github.io/redisctl/developer/contributing.html).
436+
Contributions welcome! See our [Contributing Guide](https://redis-developer.github.io/redisctl/developer/contributing.html).
437437

438438
```bash
439439
# Clone and build
440-
git clone https://github.com/ghcr.io/redis-developer/redisctl.git
440+
git clone https://github.com/redis-developer/redisctl.git
441441
cd redisctl
442442
cargo build --release
443443

@@ -463,6 +463,6 @@ at your option.
463463

464464
## Support
465465

466-
- [Documentation](https://joshrotenberg.github.io/redisctl/)
467-
- [Issue Tracker](https://github.com/ghcr.io/redis-developer/redisctl/issues)
468-
- [Discussions](https://github.com/ghcr.io/redis-developer/redisctl/discussions)
466+
- [Documentation](https://redis-developer.github.io/redisctl/)
467+
- [Issue Tracker](https://github.com/redis-developer/redisctl/issues)
468+
- [Discussions](https://github.com/redis-developer/redisctl/discussions)

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ After workflows complete, verify:
7373

7474
- [ ] GitHub Release: https://github.com/redis-developer/redisctl/releases
7575
- Should have binaries for all platforms
76-
- [ ] Docker Hub: https://ghcr.io/redis-developer/redisctl/tags
76+
- [ ] GHCR: https://github.com/redis-developer/redisctl/pkgs/container/redisctl
7777
- Should have new version tag
7878
- [ ] crates.io: https://crates.io/crates/redisctl
7979
- Should show new version

docs/src/getting-started/installation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ The easiest way to install on macOS or Linux:
2121

2222
```bash
2323
# Install directly (automatically taps the repository)
24-
brew install joshrotenberg/brew/redisctl
24+
brew install redis-developer/homebrew-tap/redisctl
2525

2626
# Or tap first, then install
27-
brew tap joshrotenberg/brew
27+
brew tap redis-developer/homebrew-tap
2828
brew install redisctl
2929
```
3030

@@ -40,12 +40,12 @@ brew upgrade redisctl
4040

4141
## Binary Releases
4242

43-
Download the latest release for your platform from the [GitHub releases page](https://github.com/ghcr.io/redis-developer/redisctl/releases).
43+
Download the latest release for your platform from the [GitHub releases page](https://github.com/redis-developer/redisctl/releases).
4444

4545
### Linux/macOS
4646
```bash
4747
# Download the binary (replace VERSION and PLATFORM)
48-
curl -L https://github.com/ghcr.io/redis-developer/redisctl/releases/download/vVERSION/redisctl-PLATFORM.tar.gz | tar xz
48+
curl -L https://github.com/redis-developer/redisctl/releases/download/vVERSION/redisctl-PLATFORM.tar.gz | tar xz
4949

5050
# Move to PATH
5151
sudo mv redisctl /usr/local/bin/
@@ -80,7 +80,7 @@ cargo install redisctl --features secure-storage
8080
## From Source
8181

8282
```bash
83-
git clone https://github.com/ghcr.io/redis-developer/redisctl.git
83+
git clone https://github.com/redis-developer/redisctl.git
8484
cd redisctl
8585

8686
# Basic installation

docs/src/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ redisctl cloud database create --subscription $SUB --name mydb --wait
3737
docker run ghcr.io/redis-developer/redisctl:latest --help
3838

3939
# macOS/Linux
40-
brew install joshrotenberg/brew/redisctl
40+
brew install redis-developer/homebrew-tap/redisctl
4141

4242
# Or download from GitHub releases
4343
```

docs/src/presentation/slides.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ <h1>
101101
</h1>
102102
<h3>The CLI for Redis Cloud and Enterprise</h3>
103103
<p class="small" style="margin-top: 2em">
104-
github.com/ghcr.io/redis-developer/redisctl
104+
github.com/redis-developer/redisctl
105105
</p>
106106
</section>
107107

@@ -620,7 +620,7 @@ <h3 class="orange">Platform Engineers</h3>
620620
<section>
621621
<h2>Installation</h2>
622622
<pre><code class="language-bash"># Homebrew (macOS/Linux)
623-
brew install joshrotenberg/brew/redisctl
623+
brew install redis-developer/homebrew-tap/redisctl
624624

625625
# Cargo (from source)
626626
cargo install redisctl
@@ -632,15 +632,15 @@ <h2>Installation</h2>
632632
docker run -it ghcr.io/redis-developer/redisctl --help
633633

634634
# From releases (Linux x86_64)
635-
curl -L https://github.com/ghcr.io/redis-developer/redisctl/releases/latest/download/redisctl-x86_64-unknown-linux-gnu.tar.gz | tar xz
635+
curl -L https://github.com/redis-developer/redisctl/releases/latest/download/redisctl-x86_64-unknown-linux-gnu.tar.gz | tar xz
636636
./redisctl --help</code></pre>
637637
</section>
638638

639639
<!-- Get Started -->
640640
<section class="center">
641641
<h2>Get Started</h2>
642642
<pre><code class="language-bash"># Install
643-
brew install joshrotenberg/brew/redisctl
643+
brew install redis-developer/homebrew-tap/redisctl
644644

645645
# Setup profile
646646
redisctl profile set mycloud --cloud-api-key $KEY --cloud-secret-key $SECRET
@@ -649,8 +649,8 @@ <h2>Get Started</h2>
649649
redisctl cloud subscription list
650650
redisctl cloud database list --subscription-id 123456</code></pre>
651651
<p style="margin-top: 1.5em"><br /></p>
652-
<h3>github.com/ghcr.io/redis-developer/redisctl</h3>
653-
<p class="small">Docs: joshrotenberg.github.io/redisctl</p>
652+
<h3>github.com/redis-developer/redisctl</h3>
653+
<p class="small">Docs: redis-developer.github.io/redisctl</p>
654654
</section>
655655
</div>
656656
</div>

0 commit comments

Comments
 (0)