Skip to content

Commit 133c3dc

Browse files
committed
docs: Add Docker usage instructions to pre-release and release templates
- Included commands for pulling the Docker image from GitHub Container Registry and Docker Hub. - Added instructions for running the MCP server using Docker. - Provided example configuration for MCP client integration.
1 parent c5e7d65 commit 133c3dc

File tree

2 files changed

+66
-0
lines changed

2 files changed

+66
-0
lines changed

.github/pre-release-template.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,39 @@ sudo mv github-actions-utils-cli /usr/local/bin/
4242

4343
Download `github-actions-utils-cli-windows-amd64.exe` and add it to your PATH.
4444

45+
#### Docker
46+
47+
```bash
48+
# Pull from GitHub Container Registry
49+
docker pull ghcr.io/techprimate/github-actions-utils-cli:latest
50+
51+
# Or pull from Docker Hub
52+
docker pull docker.io/techprimate/github-actions-utils-cli:latest
53+
54+
# Run MCP server
55+
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | \
56+
docker run -i --rm ghcr.io/techprimate/github-actions-utils-cli:latest mcp
57+
```
58+
59+
For MCP client configuration (Claude Desktop, Cursor, etc.):
60+
61+
```json
62+
{
63+
"mcpServers": {
64+
"github-actions-utils": {
65+
"command": "docker",
66+
"args": [
67+
"run",
68+
"-i",
69+
"--rm",
70+
"ghcr.io/techprimate/github-actions-utils-cli:latest",
71+
"mcp"
72+
]
73+
}
74+
}
75+
}
76+
```
77+
4578
### What's New?
4679

4780
See the [commit history](https://github.com/{{REPOSITORY}}/commits/main) for recent changes.

.github/release-template.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,39 @@ sudo mv github-actions-utils-cli /usr/local/bin/
3434

3535
Download `github-actions-utils-cli-windows-amd64.exe` and add it to your PATH.
3636

37+
#### Docker
38+
39+
```bash
40+
# Pull from GitHub Container Registry
41+
docker pull ghcr.io/techprimate/github-actions-utils-cli:{{VERSION}}
42+
43+
# Or pull from Docker Hub
44+
docker pull docker.io/techprimate/github-actions-utils-cli:{{VERSION}}
45+
46+
# Run MCP server
47+
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | \
48+
docker run -i --rm ghcr.io/techprimate/github-actions-utils-cli:{{VERSION}} mcp
49+
```
50+
51+
For MCP client configuration (Claude Desktop, Cursor, etc.):
52+
53+
```json
54+
{
55+
"mcpServers": {
56+
"github-actions-utils": {
57+
"command": "docker",
58+
"args": [
59+
"run",
60+
"-i",
61+
"--rm",
62+
"ghcr.io/techprimate/github-actions-utils-cli:{{VERSION}}",
63+
"mcp"
64+
]
65+
}
66+
}
67+
}
68+
```
69+
3770
### Usage
3871

3972
```bash

0 commit comments

Comments
 (0)