ci: set shell to sh for execution runner
Some checks failed
Deploy Canina / deploy (push) Failing after 2s

This commit is contained in:
parsa aghaei 2026-08-09 14:55:23 +03:30
parent bf8db6a31b
commit 3d1fdcf136

View File

@ -12,8 +12,9 @@ jobs:
runs-on: canina
steps:
- name: Execute Deployment Script
shell: sh
run: |
echo "Starting CI/CD deployment for branch: ${BRANCH}"
bash /opt/services/canina/deploy.sh "${BRANCH}"
sh /opt/services/canina/deploy.sh "${BRANCH}"
env:
BRANCH: ${{ github.ref_name }}