All checks were successful
Build and Push Komodo MCP Docker Image / build (push) Successful in 9s
Build image as gitea.ext.ben.io/b3nw/komodo-mcp:latest to match docker-compose.yml configuration. This ensures the stack pulls the correct image built by CI/CD.
31 lines
665 B
YAML
31 lines
665 B
YAML
name: Build and Push Komodo MCP Docker Image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Login to Gitea Container Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: gitea.ext.ben.io
|
|
username: ${{ gitea.actor }}
|
|
password: ${{ secrets.CR_PAT }}
|
|
|
|
- name: Build and Push
|
|
uses: docker/build-push-action@v4
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: gitea.ext.ben.io/b3nw/komodo-mcp:latest
|