From cd4c48b2f5ebdeb045d2e911fdad95f0daecfc13 Mon Sep 17 00:00:00 2001 From: cclohmar Date: Fri, 10 Jul 2026 23:03:31 +0100 Subject: [PATCH] chore: bump to 0.1.0.0027 --- VERSION | 2 +- deploy.sh | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index c588834..6f26162 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.0.0026 +0.1.0.0027 diff --git a/deploy.sh b/deploy.sh index e89bd81..8f94510 100755 --- a/deploy.sh +++ b/deploy.sh @@ -94,6 +94,11 @@ if [ "$GREENFIELD" = true ]; then if [ -d "$SCRIPT_DIR/config/www" ]; then cp -r "$SCRIPT_DIR/config/www"/* "$TARGET_DIR/www/"; fi cp -r "$SCRIPT_DIR/config/nextworkspace"/* "$TARGET_DIR/config/nextworkspace/" 2>/dev/null || true + # Copy language files + if [ -d "$SCRIPT_DIR/lng" ]; then + cp -r "$SCRIPT_DIR/lng" "$TARGET_DIR/" + fi + # Create podman network and deploy Caddy + Authelia echo "[5/5] Deploying containers on $NETWORK_NAME..." podman network create "$NETWORK_NAME" 2>&1 || true