Skip to content

update swagger docs with eng intel mcp tool improvements (#10) #8

update swagger docs with eng intel mcp tool improvements (#10)

update swagger docs with eng intel mcp tool improvements (#10) #8

Workflow file for this run

name: Publish Docker Image
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ secrets.GH_ACTOR }}
password: ${{ secrets.GH_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ghcr.io/cortexapps/cortex-mcp:latest
platforms: linux/amd64,linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
labels: |
org.opencontainers.image.source=https://github.com/cortexapps/cortex-mcp
org.opencontainers.image.description=MCP server for Cortex API integration
org.opencontainers.image.licenses=Apache-2.0