From 6cca56f5b5f09daa89f174b65d6293641907819d Mon Sep 17 00:00:00 2001 From: Stanislas Lange Date: Thu, 11 Dec 2025 16:41:53 +0100 Subject: [PATCH] ci: add install script log output in docker-test workflow Add step to display the install script log file (openvpn-install.log) which includes timestamps and all installation activity. This makes debugging CI failures easier by providing detailed logs directly in the workflow output. --- .github/workflows/docker-test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/docker-test.yml b/.github/workflows/docker-test.yml index debd6e4..59218e7 100644 --- a/.github/workflows/docker-test.yml +++ b/.github/workflows/docker-test.yml @@ -160,6 +160,12 @@ jobs: if: always() run: docker logs openvpn-server 2>&1 || true + - name: Show install script log + if: always() + run: | + docker cp openvpn-server:/opt/openvpn-install.log /tmp/openvpn-install.log 2>/dev/null && \ + cat /tmp/openvpn-install.log || echo "No install log found" + - name: Show client logs if: always() run: docker logs openvpn-client 2>&1 || true