-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpublish.sh
More file actions
executable file
·27 lines (24 loc) · 834 Bytes
/
publish.sh
File metadata and controls
executable file
·27 lines (24 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash
# Legacy Docker Build Script - DEPRECATED
#
# ⚠️ WARNING: This script is deprecated!
#
# 📝 NEW RECOMMENDED WORKFLOW:
# 1. Push changes to Git: git push origin main
# 2. GitHub Actions automatically builds and pushes multi-arch images
# 3. For local testing: ./build-multiarch.sh build
#
# 🔗 See: .github/workflows/docker-build.yml
# 🛠️ For local builds: ./build-multiarch.sh
echo "⚠️ DEPRECATED: This script is no longer maintained"
echo ""
echo "📝 Use the new workflow instead:"
echo " 1. git push origin main # Automatic CI/CD"
echo " 2. ./build-multiarch.sh # Local development"
echo ""
echo "🚀 The new workflow supports multi-architecture builds:"
echo " - AMD64 (Intel/AMD)"
echo " - ARM64 (Raspberry Pi 4, Apple Silicon)"
echo " - ARMv7 (Raspberry Pi 3)"
echo ""
exit 1