deploy
This commit is contained in:
parent
2ce8d1cb63
commit
1ccca0fd1a
1 changed files with 7 additions and 0 deletions
|
|
@ -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 "⏳ Ждем завершения всех операций..."
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue