Skip to content

Commit 650e8c0

Browse files
committed
CI: fix env variable for dynamic modules
1 parent e74cb5e commit 650e8c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ jobs:
4343
- name: Build
4444
env:
4545
_NGINX_VERSION: ${{ matrix.nginx }}
46-
_DYNAMIC_MODULE: ${{ matrix.dynamic_module }}
46+
SHIB_DYNAMIC_MODULE: ${{ matrix.dynamic_module }}
4747
run: |
4848
wget -O - "https://nginx.org/download/nginx-$_NGINX_VERSION.tar.gz" | tar -xzf -
4949
cd "nginx-$_NGINX_VERSION"
5050
git clone https://github.com/openresty/headers-more-nginx-module.git -b v0.33
51-
if [ "$_DYNAMIC_MODULE" = true ]; then
51+
if [ "$SHIB_DYNAMIC_MODULE" = true ]; then
5252
./configure --with-debug --add-dynamic-module=.. --add-dynamic-module=./headers-more-nginx-module
5353
else
5454
./configure --with-debug --add-module=.. --add-module=./headers-more-nginx-module

0 commit comments

Comments
 (0)