fix: Hardcode correct Docker image name in workflows
- Change IMAGE_NAME from github.repository to patrykiti/zen-mcp-server
- Update all gemini-mcp-server references to zen-mcp-server in auto-version workflow
- Fix Container Registry link to use zen-mcp-server
- Ensures Docker images are built with correct naming
🤖 Generated with Claude Code
This commit is contained in:
8
.github/workflows/auto-version.yml
vendored
8
.github/workflows/auto-version.yml
vendored
@@ -184,12 +184,12 @@ jobs:
|
|||||||
This PR triggered a Docker image build because of the \`+docker\` suffix in the title.
|
This PR triggered a Docker image build because of the \`+docker\` suffix in the title.
|
||||||
|
|
||||||
**Expected Image Tags:**
|
**Expected Image Tags:**
|
||||||
- \`ghcr.io/${{ github.repository_owner }}/gemini-mcp-server:pr-${{ github.event.pull_request.number }}\`
|
- \`ghcr.io/${{ github.repository_owner }}/zen-mcp-server:pr-${{ github.event.pull_request.number }}\`
|
||||||
- \`ghcr.io/${{ github.repository_owner }}/gemini-mcp-server:main-${{ github.sha }}\`
|
- \`ghcr.io/${{ github.repository_owner }}/zen-mcp-server:main-${{ github.sha }}\`
|
||||||
|
|
||||||
**To test the image after build completes:**
|
**To test the image after build completes:**
|
||||||
\`\`\`bash
|
\`\`\`bash
|
||||||
docker pull ghcr.io/${{ github.repository_owner }}/gemini-mcp-server:pr-${{ github.event.pull_request.number }}
|
docker pull ghcr.io/${{ github.repository_owner }}/zen-mcp-server:pr-${{ github.event.pull_request.number }}
|
||||||
\`\`\`
|
\`\`\`
|
||||||
|
|
||||||
**Claude Desktop config for testing:**
|
**Claude Desktop config for testing:**
|
||||||
@@ -201,7 +201,7 @@ jobs:
|
|||||||
\"args\": [
|
\"args\": [
|
||||||
\"run\", \"--rm\", \"-i\",
|
\"run\", \"--rm\", \"-i\",
|
||||||
\"-e\", \"GEMINI_API_KEY\",
|
\"-e\", \"GEMINI_API_KEY\",
|
||||||
\"ghcr.io/${{ github.repository_owner }}/gemini-mcp-server:pr-${{ github.event.pull_request.number }}\"
|
\"ghcr.io/${{ github.repository_owner }}/zen-mcp-server:pr-${{ github.event.pull_request.number }}\"
|
||||||
],
|
],
|
||||||
\"env\": {
|
\"env\": {
|
||||||
\"GEMINI_API_KEY\": \"your-api-key-here\"
|
\"GEMINI_API_KEY\": \"your-api-key-here\"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ on:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
REGISTRY: ghcr.io
|
REGISTRY: ghcr.io
|
||||||
IMAGE_NAME: ${{ github.repository }}
|
IMAGE_NAME: patrykiti/zen-mcp-server
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-push:
|
build-and-push:
|
||||||
@@ -116,7 +116,7 @@ jobs:
|
|||||||
|
|
||||||
echo "" >> $GITHUB_STEP_SUMMARY
|
echo "" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "### 📦 View in GitHub Container Registry" >> $GITHUB_STEP_SUMMARY
|
echo "### 📦 View in GitHub Container Registry" >> $GITHUB_STEP_SUMMARY
|
||||||
echo "[View all versions and tags →](https://github.com/${{ github.repository }}/pkgs/container/gemini-mcp-server)" >> $GITHUB_STEP_SUMMARY
|
echo "[View all versions and tags →](https://github.com/${{ github.repository }}/pkgs/container/zen-mcp-server)" >> $GITHUB_STEP_SUMMARY
|
||||||
|
|
||||||
- name: Update README with latest image info
|
- name: Update README with latest image info
|
||||||
if: github.ref_type == 'tag' || (github.event_name == 'repository_dispatch' && github.event.client_payload.pr_number != '')
|
if: github.ref_type == 'tag' || (github.event_name == 'repository_dispatch' && github.event.client_payload.pr_number != '')
|
||||||
|
|||||||
Reference in New Issue
Block a user