fix: Correct deployment order - deploy image before composer install
Some checks failed
🚀 Build & Deploy Image / Determine Build Necessity (push) Successful in 31s
Security Vulnerability Scan / Check for Dependency Changes (push) Successful in 28s
Security Vulnerability Scan / Composer Security Audit (push) Has been skipped
🚀 Build & Deploy Image / Build Docker Image (push) Successful in 11s
🚀 Build & Deploy Image / Build Runtime Base Image (push) Successful in 11s
🚀 Build & Deploy Image / Run Tests & Quality Checks (push) Has been skipped
🚀 Build & Deploy Image / Auto-deploy to Staging (push) Failing after 52s
🚀 Build & Deploy Image / Auto-deploy to Production (push) Has been skipped

- Move deploy-image.yml before install-composer-dependencies.yml
- Containers must be running before composer can install dependencies
- Fixes 'container not running' error in composer install step
- Applied to both staging and production workflows
This commit is contained in:
2025-11-08 15:35:50 +01:00
parent 38af81e2db
commit 48e5179bac

View File

@@ -986,15 +986,6 @@ jobs:
--vault-password-file /tmp/vault_pass \ --vault-password-file /tmp/vault_pass \
--private-key ~/.ssh/production --private-key ~/.ssh/production
- name: Install Composer Dependencies
run: |
cd /workspace/repo/deployment/ansible
ansible-playbook -i inventory/production.yml \
playbooks/install-composer-dependencies.yml \
-e "deployment_environment=staging" \
--vault-password-file /tmp/vault_pass \
--private-key ~/.ssh/production
- name: Deploy Docker Image to Staging - name: Deploy Docker Image to Staging
run: | run: |
cd /workspace/repo/deployment/ansible cd /workspace/repo/deployment/ansible
@@ -1009,6 +1000,15 @@ jobs:
--vault-password-file /tmp/vault_pass \ --vault-password-file /tmp/vault_pass \
--private-key ~/.ssh/production --private-key ~/.ssh/production
- name: Install Composer Dependencies
run: |
cd /workspace/repo/deployment/ansible
ansible-playbook -i inventory/production.yml \
playbooks/install-composer-dependencies.yml \
-e "deployment_environment=staging" \
--vault-password-file /tmp/vault_pass \
--private-key ~/.ssh/production
- name: Wait for deployment to stabilize - name: Wait for deployment to stabilize
run: sleep 30 run: sleep 30
@@ -1158,15 +1158,6 @@ jobs:
--vault-password-file /tmp/vault_pass \ --vault-password-file /tmp/vault_pass \
--private-key ~/.ssh/production --private-key ~/.ssh/production
- name: Install Composer Dependencies
run: |
cd /workspace/repo/deployment/ansible
ansible-playbook -i inventory/production.yml \
playbooks/install-composer-dependencies.yml \
-e "deployment_environment=production" \
--vault-password-file /tmp/vault_pass \
--private-key ~/.ssh/production
- name: Deploy Docker Image to Production - name: Deploy Docker Image to Production
run: | run: |
cd /workspace/repo/deployment/ansible cd /workspace/repo/deployment/ansible
@@ -1181,6 +1172,15 @@ jobs:
--vault-password-file /tmp/vault_pass \ --vault-password-file /tmp/vault_pass \
--private-key ~/.ssh/production --private-key ~/.ssh/production
- name: Install Composer Dependencies
run: |
cd /workspace/repo/deployment/ansible
ansible-playbook -i inventory/production.yml \
playbooks/install-composer-dependencies.yml \
-e "deployment_environment=production" \
--vault-password-file /tmp/vault_pass \
--private-key ~/.ssh/production
- name: Wait for deployment to stabilize - name: Wait for deployment to stabilize
run: sleep 30 run: sleep 30