Skip to content

Commit 020507c

Browse files
committed
docs: Update installation instructions for httpprobe
1 parent ad41b56 commit 020507c

File tree

3 files changed

+38
-5
lines changed

3 files changed

+38
-5
lines changed

.github/workflows/release.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,14 @@ jobs:
4242
with:
4343
go-version: '1.23'
4444
cache: true
45-
45+
46+
# Run GoReleaser
4647
- name: Run GoReleaser
4748
uses: goreleaser/goreleaser-action@v5
4849
with:
4950
distribution: goreleaser
5051
version: latest
5152
args: release --clean
5253
env:
53-
# This is used for pushing to the scoop bucket repo
54+
# Used for GitHub token and pushing to other repos
5455
GITHUB_TOKEN: ${{ secrets.GH_PERSONAL_TOKEN }}

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,23 @@ A powerful HTTP API testing tool for defining, running, and validating API tests
2424
curl -sSL https://raw.githubusercontent.com/mrfoh/httpprobe/main/install.sh | bash
2525
```
2626

27+
### macOS (Homebrew)
28+
29+
```bash
30+
# Add the tap
31+
brew tap mrfoh/tap
32+
33+
# Install httpprobe
34+
brew install httpprobe
35+
```
36+
37+
### Linux (Snap)
38+
39+
```bash
40+
# Install httpprobe
41+
sudo snap install httpprobe
42+
```
43+
2744
### Windows (Scoop)
2845

2946
```powershell

docs/index.md

+18-3
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,32 @@ HttpProbe makes API testing simple and powerful by allowing you to define tests
3131

3232
### Installation
3333

34-
#### Linux & macOS
34+
#### Linux & macOS (Install Script)
3535

3636
Use the install script to automatically download and install the appropriate version:
3737

3838
```bash
3939
curl -sSL https://raw.githubusercontent.com/mrfoh/httpprobe/main/install.sh | bash
4040
```
4141

42-
#### Windows
42+
#### macOS (Homebrew)
4343

44-
**Using Scoop**
44+
```bash
45+
# Add the tap
46+
brew tap mrfoh/tap
47+
48+
# Install httpprobe
49+
brew install httpprobe
50+
```
51+
52+
#### Linux (Snap)
53+
54+
```bash
55+
# Install httpprobe
56+
sudo snap install httpprobe
57+
```
58+
59+
#### Windows (Scoop)
4560

4661
```powershell
4762
# Add the bucket

0 commit comments

Comments
 (0)