From 314f13bb8d065579a2e05b082c6d1f107aead377 Mon Sep 17 00:00:00 2001 From: Lakshman Patel Date: Sun, 16 Aug 2026 21:55:31 +0530 Subject: [PATCH] fix(ci): make disabled release workflow a green no-op instead of failing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A job with zero steps is invalid in GitHub Actions, so every evaluation of the disabled PyPI publish workflow recorded a red ✗. Add a single no-op step that preserves the disabled intent (no publishing) while keeping CI clean. --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fd8018c..bb1ade8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,4 +15,8 @@ permissions: {} # disabled jobs: build-and-publish: runs-on: ubuntu-latest - steps: [] # disabled + steps: + # Disabled: GitHub fails a job with zero steps, so keep a single no-op + # to keep the (tag-triggered) run green while publishing stays off. + - name: Publishing disabled + run: echo "PyPI publishing is disabled — no action taken."