Skip to content

Add agent consciousness dashboard (aiohttp, SSE, memory browser) #8

Add agent consciousness dashboard (aiohttp, SSE, memory browser)

Add agent consciousness dashboard (aiohttp, SSE, memory browser) #8

Workflow file for this run

name: Build and Push Agent Image
on:
push:
branches: [main]
paths:
- 'src/**'
- 'requirements.txt'
- 'Dockerfile'
- 'docker-compose.yml'
- '.github/workflows/**'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Log in to GHCR
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest
type=sha,prefix=
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}