Commit 2c94954

mo khan <mo@mokhan.ca>
2025-07-03 01:02:15
chore: add release script
1 parent 94ffba6
Changed files (1)
scripts
scripts/release.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+set -e
+
+if [ -z "$1" ]; then
+    echo "Usage: $0 <version>"
+    echo "Example: $0 0.1.0"
+    exit 1
+fi
+
+VERSION="$1"
+TAG="v$VERSION"
+
+echo "Creating release $TAG..."
+git tag "$TAG"
+git push origin "$TAG"
+echo "Release $TAG created! Check GitHub Actions for build progress."
\ No newline at end of file