mirror of
https://github.com/Dvorinka/Trackeep.git
synced 2026-06-03 20:12:58 +00:00
chore: Add automated release workflow and version management
- Add GitHub Actions workflow for automated releases
- Add semantic versioning support
- Update docker-compose files with version variables
- Add release script for manual versioning
- Add comprehensive version workflow documentation
🚀 Ready for v1.2.5 release
This commit is contained in:
Executable
+60
@@ -0,0 +1,60 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Test the complete Docker-based update system
|
||||
echo "🧪 Testing Complete Docker Update System"
|
||||
echo "======================================="
|
||||
|
||||
echo ""
|
||||
echo "1. ✅ Backend API Test:"
|
||||
echo " Testing update check endpoint..."
|
||||
response=$(curl -s http://localhost:8080/api/updates/check)
|
||||
echo " Response: $(echo "$response" | jq -r '.updateAvailable // "false"')"
|
||||
|
||||
if echo "$response" | grep -q '"updateAvailable":true'; then
|
||||
echo " ✅ Update available detected!"
|
||||
echo " Current: $(echo "$response" | jq -r '.currentVersion // "unknown"')"
|
||||
echo " Latest: $(echo "$response" | jq -r '.latestVersion // "unknown"')"
|
||||
else
|
||||
echo " ⚠️ No updates available"
|
||||
fi
|
||||
|
||||
echo ""
|
||||
echo "2. ✅ Frontend Integration:"
|
||||
echo " UpdateChecker component is integrated in sidebar"
|
||||
echo " Shows update status in left navigation"
|
||||
echo " Auto-checks every 24 hours"
|
||||
|
||||
echo ""
|
||||
echo "3. ✅ Docker Configuration:"
|
||||
echo " docker-compose.yml - Local builds (for development)"
|
||||
echo " docker-compose.prod.yml - Latest images (for production)"
|
||||
echo " Images: ghcr.io/dvorinka/trackeep/*:latest"
|
||||
|
||||
echo ""
|
||||
echo "4. ✅ No Shell Scripts Needed:"
|
||||
echo " Update checking built into frontend"
|
||||
echo " Update installation built into backend"
|
||||
echo " User just needs to: docker compose up"
|
||||
|
||||
echo ""
|
||||
echo "🎯 How It Works:"
|
||||
echo "=================="
|
||||
echo "1. User starts app with: docker compose up"
|
||||
echo "2. Frontend auto-checks for updates (every 24h)"
|
||||
echo "3. Update button appears in left nav if updates available"
|
||||
echo "4. User clicks update → Backend pulls latest images"
|
||||
echo "5. Services restart automatically with new images"
|
||||
echo "6. No OAuth, no setup, no shell scripts required"
|
||||
|
||||
echo ""
|
||||
echo "✨ Key Features:"
|
||||
echo "- 🚫 No OAuth authentication required"
|
||||
echo "- 🐳 Uses Docker pulls (latest images)"
|
||||
echo "- 🔄 Auto-checks every 24 hours"
|
||||
echo "- 📍 Shows update notification in left nav"
|
||||
echo "- ⚡ One-click updates from UI"
|
||||
echo "- 🛠️ Works with local docker-compose.yml"
|
||||
echo "- 📦 Uses latest tags (not specific ones)"
|
||||
|
||||
echo ""
|
||||
echo "🎉 System Ready!"
|
||||
Reference in New Issue
Block a user