Released v1

This commit is contained in:
Steve Cliff
2026-02-12 10:37:19 +00:00
commit b07572fed5
77 changed files with 19518 additions and 0 deletions
Executable
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/env bash
set -euo pipefail
# Build the project first
echo "Building project..."
./build.sh
# Get version from git tag or use a default
VERSION=$(git describe --tags --exact-match 2>/dev/null || echo "v$(date +%Y%m%d-%H%M%S)")
echo "Creating release: $VERSION"
# Create the release using tea CLI
# This assumes you have tea configured and authenticated
tea release create \
--title "Release $VERSION" \
--note "Automated release for version $VERSION" \
--tag "$VERSION" \
--target "$(git rev-parse HEAD)" \
--asset pcli
echo "Release $VERSION created successfully!"