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
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Your Name 2025-06-05 09:17:14 -04:00
parent 993b32af46
commit 2cb6159eea
1 changed files with 1 additions and 1 deletions

View File

@ -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]