Skip to content

Commit 21d0efb

Browse files
committed
Update brotli module build
1 parent 4f4f8d0 commit 21d0efb

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build-brotli.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@ jobs:
1919
docker build -f build/Dockerfile.brotli -t brotli-builder .
2020
docker create --name extract brotli-builder
2121
docker cp extract:/usr/src/nginx-1.27.4/objs/ngx_http_brotli_filter_module.so .
22+
docker cp extract:/usr/src/nginx-1.27.4/objs/ngx_http_brotli_static_module.so .
2223
docker rm extract
2324
24-
- name: Upload Brotli module to GitHub Release
25+
- name: Upload Brotli modules to GitHub Release
2526
uses: softprops/action-gh-release@v1
2627
with:
27-
files: ./ngx_http_brotli_filter_module.so
28+
files: |
29+
./ngx_http_brotli_filter_module.so
30+
./ngx_http_brotli_static_module.so
2831
env:
2932
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)