capital letter
Build & Deploy / build-and-deploy (push) Successful in 59s

This commit is contained in:
david.alvarez
2026-06-11 13:32:44 +02:00
parent e86778e72d
commit e8091a48bd
6 changed files with 18 additions and 18 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
# This workflow builds and deploys Dostalgia whenever code is pushed to main.
# This workflow builds and deploys DOStalgia whenever code is pushed to main.
# The runner has Docker socket access so it can manage containers on the host.
# Parameters match the docker-compose at:
# /appdata/dockhand/stacks/unraid/dostalgia/compose.yaml
@@ -48,10 +48,10 @@ jobs:
sleep 5
STATUS=$(docker inspect -f '{{.State.Status}}' ${{ env.CONTAINER_NAME }})
if [ "$STATUS" = "running" ]; then
echo "✅ Dostalgia container is running"
echo "✅ DOStalgia container is running"
echo "--- last logs ---"
docker logs ${{ env.CONTAINER_NAME }} --tail 5
echo "✅ Dostalgia deployed!"
echo "✅ DOStalgia deployed!"
else
echo "❌ Container status: $STATUS"
docker logs ${{ env.CONTAINER_NAME }} --tail 30