Files
leonm 6b4953ca36
CI / 🔍 Lint & Type Check (push) Successful in 3m0s
CI / 🐳 Build & Push Image (push) Successful in 22s
feat: add seerr
2026-07-14 17:15:34 +02:00

46 lines
996 B
YAML

name: CD
on:
workflow_run:
workflows:
- CI
branches:
- main
types:
- completed
jobs:
deploy:
name: Déploiement production
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: Configuration SSH
run: |
mkdir -p "$HOME/.ssh"
echo "${{ secrets.DEPLOY_SSH_KEY }}" \
> "$HOME/.ssh/id_ed25519"
chmod 600 "$HOME/.ssh/id_ed25519"
ssh-keyscan \
-H "${{ secrets.DEPLOY_HOST }}" \
>> "$HOME/.ssh/known_hosts"
- name: 🚀 Deploy Docker
run: |
ssh \
-i "$HOME/.ssh/id_ed25519" \
${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }} << 'EOF'
set -e
echo "Projet"
cd /data/stacks/landing-server
echo "Pull nouvelle image"
docker compose pull
echo "Redémarrage"
docker compose up -d
EOF