ci
Some checks failed
Talks slides — image & chart / vars (push) Successful in 2s
Talks slides — image & chart / Build container image (push) Failing after 41s
Talks slides — image & chart / Helm chart (push) Failing after 43s

This commit is contained in:
Le Prévost-Corvellec Arnault
2026-04-08 20:13:50 +02:00
parent 4c921843a6
commit 4ffed1b5fa
19 changed files with 695 additions and 0 deletions

9
server/refresh.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
# Répertoire git : /usr/share/nginx/html (sparse checkout limité à content/).
cd /usr/share/nginx/html || exit 1
while true; do
echo "Pulling latest changes from origin/main (sparse content/)..."
git pull origin main || echo "git pull failed, will retry in 300s"
sleep 300
done