From db6e9baea79b7df38db9836a3aba38f982d40bc4 Mon Sep 17 00:00:00 2001 From: Walter Cheng Date: Mon, 24 Aug 2026 21:18:08 -0400 Subject: [PATCH] fix: disable generic Gitea publishing --- .github/workflows/agent-marketplace-release.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/agent-marketplace-release.yaml b/.github/workflows/agent-marketplace-release.yaml index d229e9e..fa80180 100644 --- a/.github/workflows/agent-marketplace-release.yaml +++ b/.github/workflows/agent-marketplace-release.yaml @@ -115,7 +115,7 @@ on: type: string default: marketplace publish_gitea: - description: Upload public installers for Claude, Codex, OpenCode, and Cursor to Gitea. + description: Deprecated and ignored. Generic Gitea installer publishing is disabled; use the npm registry. required: false type: boolean default: false @@ -330,7 +330,9 @@ jobs: echo "npm_registry=${registry}" >> "$GITHUB_OUTPUT" - name: Build Gitea installers - if: inputs.publish_gitea + # Generic installer publishing is retired. Keep this block temporarily + # for backwards-compatible workflow inputs, but never execute it. + if: false env: ARCHIVE_NAME: ${{ inputs.archive_name }} GITEA_PACKAGE_NAME: ${{ inputs.gitea_package_name }} @@ -477,7 +479,9 @@ jobs: fi - name: Upload archive to Gitea - if: inputs.publish_gitea + # Generic installer publishing is retired. Keep this block temporarily + # for backwards-compatible workflow inputs, but never execute it. + if: false id: gitea env: ARCHIVE_NAME: ${{ inputs.archive_name }} @@ -512,7 +516,6 @@ jobs: echo "installer_url=${package_base}/${installer}" >> "$GITHUB_OUTPUT" - name: Upload archive to GitHub Release - if: ${{ !inputs.publish_gitea }} uses: softprops/action-gh-release@v2 with: tag_name: ${{ needs.release-please.outputs.tag_name }}