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 4f4f8d0 commit 21d0efbCopy full SHA for 21d0efb
.github/workflows/build-brotli.yml
@@ -19,11 +19,14 @@ jobs:
19
docker build -f build/Dockerfile.brotli -t brotli-builder .
20
docker create --name extract brotli-builder
21
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 .
23
docker rm extract
24
- - name: Upload Brotli module to GitHub Release
25
+ - name: Upload Brotli modules to GitHub Release
26
uses: softprops/action-gh-release@v1
27
with:
- files: ./ngx_http_brotli_filter_module.so
28
+ files: |
29
+ ./ngx_http_brotli_filter_module.so
30
+ ./ngx_http_brotli_static_module.so
31
env:
32
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments