Skip to content

fix: resolve ruff lint and format issues across all services #2

fix: resolve ruff lint and format issues across all services

fix: resolve ruff lint and format issues across all services #2

Workflow file for this run

name: Publish Images
on:
push:
branches: [main]
jobs:
publish-images:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
service: [mail-bridge, ingestion, classifier, graph-writer, api]
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v6
with:
context: services/${{ matrix.service }}
push: true
tags: |
ghcr.io/manwithacat/overmind/${{ matrix.service }}:latest
ghcr.io/manwithacat/overmind/${{ matrix.service }}:sha-${{ github.sha }}