Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches: ['main']
pull_request:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
verify:
name: Verify (${{ matrix.os }}, Bun ${{ matrix.bun-version }})
Expand Down Expand Up @@ -39,6 +43,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write

steps:
- name: Checkout repository
Expand Down Expand Up @@ -66,19 +71,20 @@ jobs:
--title "v${{ steps.check.outputs.version }}" \
--generate-notes

- name: Log in to Docker Hub
- name: Log in to GitHub Container Registry
if: steps.check.outputs.new == 'true'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
if: steps.check.outputs.new == 'true'
id: meta
uses: docker/metadata-action@v5
with:
images: superorkait/hyperstack
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
if: steps.check.outputs.new == 'true'
Expand All @@ -88,3 +94,12 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Make package public
if: steps.check.outputs.new == 'true'
run: |
curl -s -X PATCH \
-H "Authorization: Bearer ${{ secrets.GH_PACKAGES_PAT }}" \
-H "Accept: application/vnd.github+json" \
https://api.github.com/orgs/orkait/packages/container/hyperstack \
-d '{"visibility":"public"}'
6 changes: 3 additions & 3 deletions install.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ If Docker is available, add the following configuration to the appropriate MCP c
"--rm",
"--memory=256m",
"--cpus=0.5",
"superorkait/hyperstack:latest"
"ghcr.io/orkait/hyperstack:main"
]
}
}
Expand Down Expand Up @@ -110,14 +110,14 @@ If installation failed at any step, report the specific error and what would nee

### MCP server shows as failed / cannot pull the Docker image

Verify the image is accessible: `docker pull superorkait/hyperstack:latest`
Verify the image is accessible: `docker pull ghcr.io/orkait/hyperstack:main`

If the pull fails, confirm Docker is running and you have an internet connection. The image is public on Docker Hub - no authentication is required to pull it.

### MCP server starts but tools return no results

The MCP config file may point to the wrong binary or the server is not running. Verify:
- Docker: run `docker run -i --rm superorkait/hyperstack:latest` and confirm it starts without error
- Docker: run `docker run -i --rm ghcr.io/orkait/hyperstack:main` and confirm it starts without error
- Local Bun: confirm the absolute path in `args` exists (`ls /path/to/hyperstack/bin/hyperstack.mjs`)
- Restart the CLI/IDE after any config change - MCP servers are loaded at startup

Expand Down
Loading