Skip to main content
Glama
ghcr_release.yml1.71 kB
name: Publish Docker image to Github Container Registry GHCR on: release: types: - created # Define permissions for the workflow permissions: contents: read packages: write # Define environment variables env: REGISTRY: ghcr.io IMAGE_NAME: hochfrequenz/transformerbee.mcp jobs: push_to_registry: name: Push Docker image to GHCR runs-on: ubuntu-latest timeout-minutes: 30 steps: - name: Check out the repo uses: actions/checkout@v6 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Get version tag id: get_version run: | VERSION=$(echo ${GITHUB_REF#refs/tags/}) echo "VERSION=$VERSION" >> $GITHUB_ENV echo "version=$VERSION" >> $GITHUB_OUTPUT - name: Log in to GHCR uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ secrets.GHCR_PUSH_USER }} password: ${{ secrets.GHCR_PUSH_TOKEN }} - name: Extract metadata for Docker id: meta uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: | type=raw,value=${{ steps.get_version.outputs.version }} type=raw,value=latest - name: Build and push uses: docker/build-push-action@v6 with: context: . push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max platforms: linux/amd64,linux/arm64 build-args: | BUILDKIT_INLINE_CACHE=1

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Hochfrequenz/TransformerBee.mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server