name: 🗑️ DEPRECATED — Build & Sign & Release (combined) # DEPRECATED — replaced by build.yml, sign.yml, and release.yml # This workflow is disabled. It is kept only as a reference until the # split workflows have been confirmed stable in production. # Do not trigger this workflow. on: workflow_dispatch: inputs: _disabled: description: 'This workflow is deprecated. Use build.yml → sign.yml → release.yml instead.' required: false type: string jobs: noop: name: Deprecated — no-op runs-on: ubuntu-latest steps: - name: ❌ Workflow is deprecated run: | echo "This workflow is deprecated." echo "Use build.yml → sign.yml → release.yml instead." exit 1