15 lines
545 B
YAML
15 lines
545 B
YAML
# Neutralized — the native deploy pipeline is .hanzo/workflows/deploy.yml
|
|
# (Hanzo Git push -> in-cluster act_runner -> BuildKit builds ./Dockerfile ->
|
|
# ghcr.io/hanzoai/chat:<sha> -> kubectl patch app/chat -> operator reconcile).
|
|
# GitHub is a mirror; this workflow no longer builds, publishes, or deploys.
|
|
name: "Update Test Server (sync notice)"
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
notice:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Sync notice
|
|
run: echo "native pipeline is .hanzo/workflows/deploy.yml; GitHub is a mirror"
|