flex-auth had no image workflow, so its production images were hand-built on a workstation and pushed with workstation credentials -- an artifact whose provenance was someone's working tree rather than a forge revision. Ports activity-core's canonical image.yaml: the container-build runner fetches a tarball of the pushed commit, builds, and pushes :latest and :main-<short-sha>, then reports the immutable digest for the rollout step. examples/** is a build-trigger path on purpose -- policy packages are COPYed into the image and there is no hot reload, so a policy change is an image change. Runbook updated to say plainly that images are not built on workstations. FLEX-WP-0011 filed for the rest of the gap: flex-auth runs two production Deployments on railiance01 but has never been brought under the staged-promotion contract (RAIL-BS-WP-0006). No railiance/app.toml, no stage commands, no canary or approval evidence; the deploy/ directory is a rescue of specs that existed nowhere, not the sanctioned overlay shape. Pre-existing debt found during the FLEX-WP-0010 rollout, not a regression from it, and not a blocker for routine policy rollouts -- flex-auth fails closed. T03 also flags that the coulombcore drain plan still lists flex-auth on a host it no longer runs on. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
65 lines
2.3 KiB
YAML
65 lines
2.3 KiB
YAML
name: Build and Publish Container Image
|
|
|
|
# Modelled on activity-core/.forgejo/workflows/image.yaml -- the fleet's
|
|
# canonical image-publish pattern. Images are built by CI from a tarball of
|
|
# the pushed commit, never from a workstation working tree, so the artifact's
|
|
# provenance is a forge revision.
|
|
#
|
|
# `examples/**` is a build-trigger path on purpose: the policy packages are
|
|
# COPYed into the image (see Containerfile) and there is no hot reload, so a
|
|
# policy change is a new image.
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- ".forgejo/workflows/image.yaml"
|
|
- "Containerfile"
|
|
- "cmd/**"
|
|
- "internal/**"
|
|
- "pkg/**"
|
|
- "examples/**"
|
|
- "go.mod"
|
|
- "go.sum"
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
REGISTRY: forgejo.coulomb.social
|
|
IMAGE_NAME: coulomb/flex-auth
|
|
DOCKER_HOST: tcp://127.0.0.1:2375
|
|
|
|
jobs:
|
|
build-and-push:
|
|
runs-on: container-build
|
|
steps:
|
|
- name: Build and push image
|
|
env:
|
|
REGISTRY_USER: ${{ secrets.REGISTRY_USER }}
|
|
REGISTRY_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
|
run: |
|
|
set -eu
|
|
REF="${GITHUB_SHA:-main}"
|
|
SHORT="${REF:0:7}"
|
|
mkdir -p buildctx "${HOME}/bin"
|
|
wget -qO /tmp/repo.tar.gz \
|
|
"https://forgejo.coulomb.social/${GITHUB_REPOSITORY}/archive/${SHORT}.tar.gz"
|
|
tar xzf /tmp/repo.tar.gz -C buildctx --strip-components=1
|
|
wget -qO- https://download.docker.com/linux/static/stable/x86_64/docker-27.3.1.tgz \
|
|
| tar xz --strip-components=1 -C "${HOME}/bin" docker/docker
|
|
export PATH="${HOME}/bin:${PATH}"
|
|
echo "${REGISTRY_TOKEN}" | docker login "${REGISTRY}" -u "${REGISTRY_USER}" --password-stdin
|
|
IMAGE="${REGISTRY}/${IMAGE_NAME}"
|
|
docker build -f buildctx/Containerfile -t "${IMAGE}:latest" -t "${IMAGE}:main-${SHORT}" buildctx
|
|
docker push "${IMAGE}:latest"
|
|
docker push "${IMAGE}:main-${SHORT}"
|
|
echo "pushed ${IMAGE}:latest and ${IMAGE}:main-${SHORT}"
|
|
|
|
- name: Report immutable digest
|
|
run: |
|
|
set -eu
|
|
export PATH="${HOME}/bin:${PATH}"
|
|
IMAGE="${REGISTRY}/${IMAGE_NAME}"
|
|
SHORT="${GITHUB_SHA:0:7}"
|
|
# Deployments pin by digest, never by tag -- print it for the rollout step.
|
|
docker inspect --format='{{index .RepoDigests 0}}' "${IMAGE}:main-${SHORT}"
|