mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-28 03:49:31 +00:00
The junie.Dockerfile was added in PR #2601 but the docker.yml workflow matrix was not updated, so no Docker image for junie was ever being built. Add junie to the agent list so ghcr.io/openrouterteam/spawn-junie gets built alongside all other agents. Co-authored-by: spawn-qa-bot <qa@openrouter.ai> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
38 lines
861 B
YAML
38 lines
861 B
YAML
name: Build Docker Images
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "sh/docker/**"
|
|
schedule:
|
|
# Daily: pick up new agent releases
|
|
- cron: "0 6 * * *"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
agent: [claude, codex, openclaw, opencode, kilocode, zeroclaw, hermes, junie]
|
|
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: .
|
|
file: sh/docker/${{ matrix.agent }}.Dockerfile
|
|
push: true
|
|
tags: ghcr.io/openrouterteam/spawn-${{ matrix.agent }}:latest
|