This commit is contained in:
Dmitry 2025-11-27 21:39:31 +03:00
parent 2ce8d1cb63
commit 1ccca0fd1a

View file

@ -462,6 +462,13 @@ jobs:
needs: [deploy-backend, deploy-web] needs: [deploy-backend, deploy-web]
if: always() if: always()
steps: steps:
- name: Setup SSH
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SSH_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan -H ${{ secrets.SSH_HOST }} >> ~/.ssh/known_hosts
- name: Wait and Verify All Services - name: Wait and Verify All Services
run: | run: |
echo "⏳ Ждем завершения всех операций..." echo "⏳ Ждем завершения всех операций..."