previously, wrong syntax of passing build arguments was used, thus
previously images were built using default SSLLIB=QuicTLS-1.1.1
---
.github/workflows/quic-interop-aws-lc.yml | 2 +-
.github/workflows/quic-interop-libressl.yml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/quic-interop-aws-lc.yml
b/.github/workflows/quic-interop-aws-lc.yml
index 37680e6dd..27fff66c2 100644
--- a/.github/workflows/quic-interop-aws-lc.yml
+++ b/.github/workflows/quic-interop-aws-lc.yml
@@ -35,7 +35,7 @@ jobs:
context: https://github.com/haproxytech/haproxy-qns.git
push: true
build-args: |
- SSLLIB: AWS-LC
+ SSLLIB=AWS-LC
tags: ghcr.io/${{ github.repository }}:aws-lc
- name: Cleanup registry
diff --git a/.github/workflows/quic-interop-libressl.yml
b/.github/workflows/quic-interop-libressl.yml
index e348aea1a..71fa81f62 100644
--- a/.github/workflows/quic-interop-libressl.yml
+++ b/.github/workflows/quic-interop-libressl.yml
@@ -35,7 +35,7 @@ jobs:
context: https://github.com/haproxytech/haproxy-qns.git
push: true
build-args: |
- SSLLIB: LibreSSL
+ SSLLIB=LibreSSL
tags: ghcr.io/${{ github.repository }}:libressl
- name: Cleanup registry
--
2.46.0.windows.1