We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e74cb5e commit 650e8c0Copy full SHA for 650e8c0
.github/workflows/build.yml
@@ -43,12 +43,12 @@ jobs:
43
- name: Build
44
env:
45
_NGINX_VERSION: ${{ matrix.nginx }}
46
- _DYNAMIC_MODULE: ${{ matrix.dynamic_module }}
+ SHIB_DYNAMIC_MODULE: ${{ matrix.dynamic_module }}
47
run: |
48
wget -O - "https://nginx.org/download/nginx-$_NGINX_VERSION.tar.gz" | tar -xzf -
49
cd "nginx-$_NGINX_VERSION"
50
git clone https://github.com/openresty/headers-more-nginx-module.git -b v0.33
51
- if [ "$_DYNAMIC_MODULE" = true ]; then
+ if [ "$SHIB_DYNAMIC_MODULE" = true ]; then
52
./configure --with-debug --add-dynamic-module=.. --add-dynamic-module=./headers-more-nginx-module
53
else
54
./configure --with-debug --add-module=.. --add-module=./headers-more-nginx-module
0 commit comments