File tree Expand file tree Collapse file tree 2 files changed +6
-35
lines changed
Expand file tree Collapse file tree 2 files changed +6
-35
lines changed Original file line number Diff line number Diff line change 88 apt_deps : gettext-base build-essential wget libpcre3-dev libssl-dev libxslt-dev zlib1g-dev awscli
99
1010jobs :
11- release-debian-amd64 :
12- name : Release Debian amd64
13- timeout-minutes : 30
14- runs-on : ubuntu-latest
15- container : debian:11
16- env :
17- output_name : nginx-debian-11-amd64
18- steps :
19- - name : Install prerequisites
20- run : |
21- apt-get -qq update -y
22- apt-get -qq install -y ${{ env.apt_deps }}
23-
24- - name : Checkout source
25- uses : actions/checkout@v4
26-
27- - name : Build nginx binary
28- run : ./nginx-build.sh "$(pwd)/${output_name}"
29-
30- - name : Generate artifact checksum
31- run : sha256sum ${{ env.output_name }} > ${{ env.output_name }}.sha256
32-
33- - name : Upload release artifacts
34- uses : softprops/action-gh-release@v2
35- with :
36- files : |
37- ${{ env.output_name }}
38- ${{ env.output_name }}.sha256
39-
4011 release-debian-aarch64 :
4112 name : Release Debian aarch64
4213 timeout-minutes : 60
4314 runs-on : ubuntu-latest
4415 env :
45- output_name : nginx-debian-11 -aarch64
16+ output_name : nginx-debian-12 -aarch64
4617 steps :
4718 - name : Checkout source
4819 uses : actions/checkout@v4
5122 uses : uraimo/run-on-arch-action@v2
5223 with :
5324 arch : aarch64
54- distro : bullseye
25+ distro : bookworm
5526 run : |
5627 apt-get -qq update -y
5728 apt-get -qq install -y ${{ env.apt_deps }}
Original file line number Diff line number Diff line change @@ -10,19 +10,19 @@ set -euxo pipefail
1010# Example: ./nginx-build.sh /usr/local/sbin/nginx
1111
1212# https://nginx.org/en/download.html
13- NGINX_VERSION=1.23.3
13+ NGINX_VERSION=1.27.0
1414
1515# https://github.com/vision5/ngx_devel_kit/releases
16- NGX_DEVEL_KIT_VERSION=0.3.2
16+ NGX_DEVEL_KIT_VERSION=0.3.3
1717
1818# https://github.com/openresty/set-misc-nginx-module/tags
1919NGX_SET_MISC_MOD_VERSION=0.33
2020
2121# https://github.com/openresty/headers-more-nginx-module/tags
22- NGX_HEADERS_MORE_MOD_VERSION=0.34
22+ NGX_HEADERS_MORE_MOD_VERSION=0.37
2323
2424# https://hg.nginx.org/njs/tags
25- NGX_NJS_MOD_VERSION=0.7.10
25+ NGX_NJS_MOD_VERSION=0.8.4
2626
2727NGINX_SRC_URL=http://nginx.org/download/nginx-${NGINX_VERSION} .tar.gz
2828NGX_DEVEL_KIT_SRC_URL=https://github.com/vision5/ngx_devel_kit/archive/refs/tags/v${NGX_DEVEL_KIT_VERSION} .tar.gz
You can’t perform that action at this time.
0 commit comments