Initial commit: Outline MCP server with hybrid light pattern
Some checks failed
Build and Push Docker Image / build (push) Failing after 0s

This commit is contained in:
Ben
2025-12-30 19:36:17 +00:00
parent 6089596202
commit 5da443cef7
9 changed files with 1110 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
name: Build and Push Docker Image
on:
push:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Container Registry
uses: docker/login-action@v3
with:
registry: gitea.ext.ben.io
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
gitea.ext.ben.io/b3nw/outline-mcp-custom:latest
gitea.ext.ben.io/b3nw/outline-mcp-custom:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max