From 5981dca4391f0512a21fdc6614e510f69df67565 Mon Sep 17 00:00:00 2001 From: Hanzo Dev Date: Fri, 24 Jul 2026 15:14:30 -0700 Subject: [PATCH] =?UTF-8?q?ci(docker):=20reduce=20to=20sync-notice=20?= =?UTF-8?q?=E2=80=94=20native=20pipeline=20is=20.hanzo/workflows/deploy.ym?= =?UTF-8?q?l?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Image build+push+deploy now runs in-cluster (act_runner + BuildKit → operator). GitHub is a mirror; this workflow is retained only as a manual sync notice. --- .github/workflows/docker-deploy.yml | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/.github/workflows/docker-deploy.yml b/.github/workflows/docker-deploy.yml index 0c146071..82dfb009 100644 --- a/.github/workflows/docker-deploy.yml +++ b/.github/workflows/docker-deploy.yml @@ -1,24 +1,11 @@ name: Docker - +# Native deploy pipeline is .hanzo/workflows/deploy.yml (Hanzo Git → act_runner → +# BuildKit → ghcr.io/hanzoai/dataroom: → operator reconcile → hanzocd). +# GitHub is a mirror; this workflow is retained only as a manual sync notice. on: workflow_dispatch: - push: - branches: [main] - tags: ['v*'] - -permissions: - contents: read - packages: write - id-token: write - jobs: - docker: - uses: hanzoai/.github/.github/workflows/docker-build.yml@main - with: - image: ghcr.io/hanzoai/dataroom - # amd64-only: DOKS has no arm64 droplets (arm64 build paused). - platforms: linux/amd64 - # Deploy is operator-managed via universe Service CR (services.hanzo.ai/dataroom). - # CI only builds+pushes the image; never `kubectl set image` (operator reverts it). - deploy: false - secrets: inherit + notice: + runs-on: ubuntu-latest + steps: + - run: echo "native pipeline is .hanzo/workflows/deploy.yml; GitHub is a mirror"