From 869d3d19a414f43037f403b1a3b08f3e707b9771 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Mon, 20 May 2024 17:50:44 +0100 Subject: [PATCH] Fix the quick check of the binary in CI Think the `curl` error changed; let's actually use the same certificate to actually check everything works end-to-end. --- .github/workflows/ci-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index ad38938..f49bf46 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -29,4 +29,4 @@ jobs: - name: Run and test redirect run: | ./tiny-ssl-reverse-proxy -key key.pem -cert crt.pem & - curl -v https://localhost:443 2>&1 | grep "self signed certificate" + curl --cacert crt.pem https://localhost:443 | grep "Backend Unavailable"