File tree Expand file tree Collapse file tree 2 files changed +19
-17
lines changed Expand file tree Collapse file tree 2 files changed +19
-17
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ jobs:
31
31
matrix :
32
32
# NGINX versions to build/test against
33
33
nginx-version :
34
- - ' 1.20.2' # legacy
35
- - ' 1.22.1' # legacy
36
- - ' 1.24.0' # legacy
37
- - ' 1.26.2' # stable
38
- - ' 1.26.3' # stable
39
- - ' 1.27.3' # mainline
40
- - ' 1.27.4' # mainline
34
+ - 1.20.2 # legacy
35
+ - 1.22.1 # legacy
36
+ - 1.24.0 # legacy
37
+ - 1.26.2 # stable
38
+ - 1.26.3 # stable
39
+ - 1.27.3 # mainline
40
+ - 1.27.4 # mainline
41
41
42
42
# The following versions of libjwt are compatible:
43
43
# * v1.0 - v1.12.0
47
47
# * Debian and Ubuntu's repos have v1.10.2
48
48
# * EPEL has v1.12.1
49
49
# This compiles against each version prior to a breaking change and the latest release
50
- libjwt-version : ['1.12.0', '1.14.0', '1.15.3']
50
+ libjwt-version :
51
+ - 1.12.0
52
+ - 1.14.0
53
+ - 1.15.3
51
54
runs-on : ubuntu-latest
52
55
steps :
53
56
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ SSL_IMAGE_MAP[$SSL_VERSION_3_2_1]="bookworm-slim:openssl-${SSL_VERSION_3_2_1}"
20
20
21
21
# supported NGINX versions -- for binary distribution
22
22
NGINX_VERSIONS=(
23
- ' 1.20.2' # legacy
24
- ' 1.22.1' # legacy
25
- ' 1.24.0' # legacy
26
- ' 1.26.2' # stable
27
- ' 1.26.3' # stable
28
- ' 1.27.3' # mainline
29
- ' 1.27.4' # mainline
23
+ 1.20.2 # legacy
24
+ 1.22.1 # legacy
25
+ 1.24.0 # legacy
26
+ 1.26.2 # stable
27
+ 1.26.3 # stable
28
+ 1.27.3 # mainline
29
+ 1.27.4 # mainline
30
30
)
31
31
NGINX_VERSION=${NGINX_VERSION:- ${NGINX_VERSIONS[-1]} }
32
32
IMAGE_NAME=${IMAGE_NAME:- nginx-auth-jwt}
@@ -139,8 +139,7 @@ make_release() {
139
139
-C bin/usr/lib64/nginx/modules ngx_http_auth_jwt_module.so > /dev/null
140
140
}
141
141
142
- # Create releases for the current mainline and stable version, as well as the 2 most recent "legacy" versions.
143
- # See: https://nginx.org/en/download.html
142
+ # Create releases for all NGINX versions defined in `NGINX_VERSIONS`.
144
143
make_releases () {
145
144
local moduleVersion=$( git describe --tags --abbrev=0)
146
145
You can’t perform that action at this time.
0 commit comments