Files
daily-meal-api/.gitea/workflows/cd.yml
T
leonm fd59e627cc
CI / 🧪 Tests Laravel (push) Successful in 2m19s
CI / 🐳 Build & Push Image (push) Successful in 35s
feat: change server
2026-08-13 10:37:02 +02:00

44 lines
986 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 ~/.ssh
echo "${{ secrets.DEPLOY_SSH_KEY }}" \
> ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan \
-H "${{ secrets.DEPLOY_HOST }}" \
>> ~/.ssh/known_hosts
- name: 🚀 Deploy Docker
run: |
ssh \
-i ~/.ssh/id_ed25519 \
${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_HOST }} << 'EOF'
set -e
echo "Projet"
cd /data/stacks/bowli-api
echo "Pull nouvelle image"
docker compose pull
echo "Redémarrage"
docker compose up -d --wait --wait-timeout 180
EOF