Trying deploy
Some checks failed
Production Build and Deploy / Build (push) Successful in 1m23s
Production Build and Deploy / Deploy (push) Failing after 8s

This commit is contained in:
Liviu Burcusel 2025-12-15 13:11:27 +01:00
parent 30a89d6662
commit f6823579e9
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C

View file

@ -101,7 +101,15 @@ jobs:
docker image tag ${{ env.CONTAINER_NAME }}:latest ${{ env.REGISTRY }}/${{ env.OWNER }}/${{ env.CONTAINER_NAME }}:${{ steps.prepare-env.outputs.VERSION }}
docker image push ${{ env.REGISTRY }}/${{ env.OWNER }}/${{ env.CONTAINER_NAME }}:${{ steps.prepare-env.outputs.VERSION }}
- name: Server deploy
run: |
echo "Deploy to server not implemented yet."
uses: https://github.com/appleboy/ssh-action@v1
with:
host: ${{ secrets.DEPLOY_HOST }}
username: ${{ secrets.DEPLOY_USER }}
key: ${{ secrets.DEPLOY_KEY }}
script: |
whoami
pwd
docker info
docker ps --all
####