From 8219c2ca732e7e32518ed7d1d5a3ca933d43454c Mon Sep 17 00:00:00 2001 From: viktormarinho Date: Tue, 12 May 2026 10:52:49 -0300 Subject: [PATCH] Rename deploy workflow to publish-registry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The workflow only POSTs metadata to the Mesh registry — it never deployed to Cloudflare. Renamed to reflect what it actually does. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/{deploy.yml => publish-registry.yml} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{deploy.yml => publish-registry.yml} (84%) diff --git a/.github/workflows/deploy.yml b/.github/workflows/publish-registry.yml similarity index 84% rename from .github/workflows/deploy.yml rename to .github/workflows/publish-registry.yml index 591c345..5b8f014 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/publish-registry.yml @@ -1,4 +1,4 @@ -name: Deploy (Production) +name: Publish to Registry on: workflow_dispatch: @@ -7,7 +7,7 @@ on: - main jobs: - deploy: + publish: runs-on: ubuntu-latest steps: @@ -44,8 +44,8 @@ jobs: - name: Notify success if: success() - run: echo "Successfully deployed site-diagnostics to production" + run: echo "Successfully published site-diagnostics to registry" - name: Notify failure if: failure() - run: echo "Deployment failed for site-diagnostics" + run: echo "Registry publish failed for site-diagnostics"