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
ci/woodpecker/push/woodpecker Pipeline failed
Details
This commit is contained in:
parent
993b32af46
commit
2cb6159eea
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue