From 2cb6159eea0105f8b93231aeeef7cae3d5b1685b Mon Sep 17 00:00:00 2001 From: Your Name Date: Thu, 5 Jun 2025 09:17:14 -0400 Subject: [PATCH] fix: explicitly use bash to run deployment script - CI environment was using /bin/sh instead of /bin/bash - Our script uses bash-specific features like arrays - This ensures proper execution in CI environment --- .woodpecker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 7a82b53..4b34471 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -205,7 +205,7 @@ steps: volumes: - /var/run/docker.sock:/var/run/docker.sock commands: - - ./scripts/ci-deploy-production.sh + - bash ./scripts/ci-deploy-production.sh when: branch: main event: [push, cron]