mirror of
https://github.com/Anon-Planet/thgtoa.git
synced 2026-06-11 00:02:29 +02:00
ede2a53437
- release.yml now generates release-YYYYMMDD-<sha> tags automatically - changelog.yml requires explicit version input, no auto-increment from tags - sign.yml normalises extensions to .asc and .b2sum - build-sign-release.yml neutered to a no-op with descriptive error - tag_release.py archived to scripts/archived/ - update_changelog.py: version_from_changelog() is now primary version source - .gitignore: fix export/ tracking to match actual file extensions - docs/code/develop.md: fully rewritten to reflect new manual four-step flow
26 lines
768 B
YAML
26 lines
768 B
YAML
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
|