We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6754c64 commit 47b88f5Copy full SHA for 47b88f5
.github/workflows/deploy-via-ts.yml
@@ -50,10 +50,12 @@ jobs:
50
echo "Starting the frontend container in headless/detached mode..."
51
docker compose -f compose.yml up -d --no-deps --force-recreate frontend
52
53
- echo "Cleaning up unused images and containers..."
54
- docker image prune -af || true
55
- docker container prune -f || true
56
- docker system prune -f || true
+ (
+ echo "Cleaning up unused images and containers..."
+ docker image prune -af || true
+ docker container prune -f || true
57
+ docker system prune -f || true
58
+ ) || true
59
60
echo "Deployment finished successfully."
61
exit 0
0 commit comments