From df8cba3582e097ef79fc5ee69888d3c311b02e59 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Thu, 23 Apr 2026 01:33:27 -0400 Subject: [PATCH] fix: use correct path for nginx binary in CI verify step --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c0ff30..fb77690 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,4 +50,5 @@ jobs: - name: Verify nginx binary run: | - /tmp/nginx-build/nginx -V + source "$GITHUB_WORKSPACE/conf/nginx-configure-flags" + /tmp/nginx-${NGINX_VERSION}/objs/nginx -V