mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
pr-reviewer-1 was the one agent with no dedicated image and no compose builder service — it reused roboco-agent-base, which left it absent from the compose files entirely (so it looked like the PR reviewer simply was not there). Make it first-class for parity: add docker/agent-pr-reviewer.Dockerfile (FROM the base — read-only reviewer, no extra toolchain), an agent-pr-reviewer-image builder service in both compose files and the registry compose, the image in the release workflow's publish list, and map pr-reviewer-1 -> roboco-agent-pr-reviewer in the orchestrator plus its lazy-build dockerfile map. Supersedes the earlier base-reuse mapping.
122 lines
4.6 KiB
YAML
122 lines
4.6 KiB
YAML
name: Release
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish-images:
|
|
name: Build & push all RoboCo images to GHCR + Docker Hub
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
env:
|
|
GHCR: ghcr.io/rennf93 # GitHub Container Registry namespace
|
|
DOCKERHUB: docker.io/renzof93 # Docker Hub namespace (different username)
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Free up runner disk space
|
|
run: |
|
|
# Eleven images on one runner is disk-heavy; drop preinstalled tooling
|
|
# we don't use so the builds don't run out of space.
|
|
sudo rm -rf /usr/share/dotnet /opt/ghc /usr/local/lib/android /opt/hostedtoolcache/CodeQL || true
|
|
df -h /
|
|
|
|
- name: Log in to GitHub Container Registry
|
|
uses: docker/login-action@v4
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Log in to Docker Hub
|
|
uses: docker/login-action@v4
|
|
with:
|
|
username: renzof93
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Derive version tag
|
|
id: ver
|
|
run: |
|
|
# release → the tag (v0.1.0 → 0.1.0). Any manual dispatch runs against a
|
|
# branch whose name can contain "/" (e.g. feature/x) — not a valid image
|
|
# tag — so use the short SHA, which always is one.
|
|
if [ "${{ github.event_name }}" = "release" ]; then
|
|
RAW="${{ github.event.release.tag_name }}"
|
|
VERSION="${RAW#v}"
|
|
else
|
|
VERSION="$(git rev-parse --short HEAD)"
|
|
fi
|
|
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
|
|
echo "Release version: $VERSION"
|
|
|
|
- name: Build & push every RoboCo image
|
|
env:
|
|
VERSION: ${{ steps.ver.outputs.version }}
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
# Tag one built image for both registries at :VERSION and :latest.
|
|
regtags() {
|
|
local name="$1"
|
|
echo "-t ${GHCR}/${name}:${VERSION} -t ${GHCR}/${name}:latest" \
|
|
"-t ${DOCKERHUB}/${name}:${VERSION} -t ${DOCKERHUB}/${name}:latest"
|
|
}
|
|
# Push one image's four tags (both registries, both labels).
|
|
pushall() {
|
|
local name="$1"
|
|
for ref in "${GHCR}/${name}" "${DOCKERHUB}/${name}"; do
|
|
docker push "${ref}:${VERSION}"
|
|
docker push "${ref}:latest"
|
|
done
|
|
}
|
|
|
|
# agent-base MUST build first: the eight agent images build
|
|
# `FROM roboco-agent-base` — a local tag that has to exist in the daemon
|
|
# before they build. Tag it locally (for the FROM) and for both registries.
|
|
echo "::group::build roboco-agent-base"
|
|
docker build -f docker/agent-base.Dockerfile \
|
|
-t roboco-agent-base $(regtags roboco-agent-base) .
|
|
echo "::endgroup::"
|
|
|
|
# Every other image → its Dockerfile. Names mirror docker-compose's
|
|
# `image:` values exactly, so compose can later pull instead of build.
|
|
declare -A IMAGES=(
|
|
[roboco-orchestrator]=docker/orchestrator.Dockerfile
|
|
[roboco-panel]=docker/panel.Dockerfile
|
|
[roboco-agent-pm]=docker/agent-pm.Dockerfile
|
|
[roboco-agent-dev-be]=docker/agent-dev-be.Dockerfile
|
|
[roboco-agent-dev-fe]=docker/agent-dev-fe.Dockerfile
|
|
[roboco-agent-qa-be]=docker/agent-qa-be.Dockerfile
|
|
[roboco-agent-qa-fe]=docker/agent-qa-fe.Dockerfile
|
|
[roboco-agent-ux]=docker/agent-ux.Dockerfile
|
|
[roboco-agent-doc]=docker/agent-doc.Dockerfile
|
|
[roboco-agent-prompter]=docker/agent-prompter.Dockerfile
|
|
[roboco-agent-secretary]=docker/agent-secretary.Dockerfile
|
|
[roboco-agent-pr-reviewer]=docker/agent-pr-reviewer.Dockerfile
|
|
)
|
|
for name in "${!IMAGES[@]}"; do
|
|
echo "::group::build ${name}"
|
|
docker build -f "${IMAGES[$name]}" $(regtags "${name}") .
|
|
echo "::endgroup::"
|
|
done
|
|
|
|
# Push only after every build succeeds, so a failure never leaves a
|
|
# half-published release. Base first, then the rest.
|
|
echo "::group::push roboco-agent-base"
|
|
pushall roboco-agent-base
|
|
echo "::endgroup::"
|
|
for name in "${!IMAGES[@]}"; do
|
|
echo "::group::push ${name}"
|
|
pushall "${name}"
|
|
echo "::endgroup::"
|
|
done
|
|
|
|
echo "Published roboco-agent-base + ${#IMAGES[@]} more images to GHCR + Docker Hub at :${VERSION} and :latest"
|