File tree 2 files changed +6
-35
lines changed
2 files changed +6
-35
lines changed Original file line number Diff line number Diff line change 8
8
apt_deps : gettext-base build-essential wget libpcre3-dev libssl-dev libxslt-dev zlib1g-dev awscli
9
9
10
10
jobs :
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
-
40
11
release-debian-aarch64 :
41
12
name : Release Debian aarch64
42
13
timeout-minutes : 60
43
14
runs-on : ubuntu-latest
44
15
env :
45
- output_name : nginx-debian-11 -aarch64
16
+ output_name : nginx-debian-12 -aarch64
46
17
steps :
47
18
- name : Checkout source
48
19
uses : actions/checkout@v4
51
22
uses : uraimo/run-on-arch-action@v2
52
23
with :
53
24
arch : aarch64
54
- distro : bullseye
25
+ distro : bookworm
55
26
run : |
56
27
apt-get -qq update -y
57
28
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
10
10
# Example: ./nginx-build.sh /usr/local/sbin/nginx
11
11
12
12
# https://nginx.org/en/download.html
13
- NGINX_VERSION=1.23.3
13
+ NGINX_VERSION=1.27.0
14
14
15
15
# https://github.com/vision5/ngx_devel_kit/releases
16
- NGX_DEVEL_KIT_VERSION=0.3.2
16
+ NGX_DEVEL_KIT_VERSION=0.3.3
17
17
18
18
# https://github.com/openresty/set-misc-nginx-module/tags
19
19
NGX_SET_MISC_MOD_VERSION=0.33
20
20
21
21
# 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
23
23
24
24
# https://hg.nginx.org/njs/tags
25
- NGX_NJS_MOD_VERSION=0.7.10
25
+ NGX_NJS_MOD_VERSION=0.8.4
26
26
27
27
NGINX_SRC_URL=http://nginx.org/download/nginx-${NGINX_VERSION} .tar.gz
28
28
NGX_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