Revert "Add CI workflow and helper to create releases and attach artifacts"

This reverts commit 5522a9829c.
This commit is contained in:
webadderall
2026-03-13 21:14:05 +11:00
parent e523eeded2
commit 8d0afe54f8
3 changed files with 0 additions and 108 deletions
-13
View File
@@ -1,13 +0,0 @@
#!/usr/bin/env bash
# Usage: ./scripts/trigger_release.sh <tag> "Release Title" "Release notes"
set -euo pipefail
if ! command -v gh >/dev/null 2>&1; then
echo "gh (GitHub CLI) is required to trigger the workflow. Install: https://cli.github.com/"
exit 1
fi
TAG="$1"
RELEASE_NAME="$2"
BODY="${3:-}"
# Trigger the workflow_dispatch for the create-release workflow
gh workflow run .github/workflows/create-release.yml -f tag_name="$TAG" -f release_name="$RELEASE_NAME" -f body="$BODY"
echo "Triggered workflow to create release $TAG"