Skip to content

v1.25.5

v1.25.5 #26

Triggered via release April 13, 2024 10:05
@Ran-snowRan-snow
published 1.25.5
Status Failure
Total duration 46s
Artifacts

docker-publish.yml

on: release
Push Docker image to multiple registries
36s
Push Docker image to multiple registries
Fit to window
Zoom out
Zoom in

Annotations

1 error and 1 warning
Push Docker image to multiple registries
buildx failed with: ERROR: failed to solve: process "/bin/sh -c GPG_KEYS_NGINX=B0F4253373F8F6F510D42178520A9993A1C052F8 \t&& GPG_KEYS_OPENSSL=0E604491 \t&& CONFIG=\"\t\t--prefix=/etc/nginx \t\t--sbin-path=/usr/sbin/nginx \t\t--modules-path=/usr/lib/nginx/modules \t\t--conf-path=/etc/nginx/nginx.conf \t\t--error-log-path=/var/log/nginx/error.log \t\t--http-log-path=/var/log/nginx/access.log \t\t--pid-path=/var/run/nginx.pid \t\t--lock-path=/var/run/nginx.lock \t\t--http-client-body-temp-path=/var/cache/nginx/client_temp \t\t--http-proxy-temp-path=/var/cache/nginx/proxy_temp \t\t--http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \t\t--http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp \t\t--http-scgi-temp-path=/var/cache/nginx/scgi_temp \t\t--user=nginx \t\t--group=nginx \t\t--with-http_ssl_module \t\t--with-http_realip_module \t\t--with-http_addition_module \t\t--with-http_sub_module \t\t--with-http_dav_module \t\t--with-http_flv_module \t\t--with-http_mp4_module \t\t--with-http_gunzip_module \t\t--with-http_gzip_static_module \t\t--with-http_random_index_module \t\t--with-http_secure_link_module \t\t--with-http_stub_status_module \t\t--with-http_auth_request_module \t\t--with-http_xslt_module=dynamic \t\t--with-http_image_filter_module=dynamic \t\t--with-http_geoip_module=dynamic \t\t--with-threads \t\t--with-stream \t\t--with-stream_ssl_module \t\t--with-stream_ssl_preread_module \t\t--with-stream_realip_module \t\t--with-stream_geoip_module=dynamic \t\t--with-http_slice_module \t\t--with-mail \t\t--with-mail_ssl_module \t\t--with-compat \t\t--with-file-aio \t\t--with-http_v2_module \t\t--with-http_v3_module \t\t--with-openssl=/usr/src/openssl-$OPENSSL_VERSION \t\t--add-module=/usr/src/ngx_brotli \t\t--add-module=/usr/src/ngx_http_geoip2 \t\" \t&& addgroup -S nginx \t&& adduser -D -S -h /var/cache/nginx -s /sbin/nologin -G nginx nginx \t\t&& apk add --no-cache --virtual .build-deps \t\tgcc \t\tlibc-dev \t\tmake \t\tpcre-dev \t\tzlib-dev \t\tlinux-headers \t\tcurl \t\tgit \t\tgnupg \t\tlibxslt-dev \t\tgd-dev \t\tgeoip-dev \t\tg++ \t\tlibtool \t\tautomake \t\tautoconf \t\tlibmaxminddb-dev \t&& git clone --depth=1 --recurse-submodules https://github.com/google/ngx_brotli.git /usr/src/ngx_brotli \t&& git clone --depth=1 --recurse-submodules https://github.com/leev/ngx_http_geoip2_module.git /usr/src/ngx_http_geoip2 \t&& curl -fSL https://freenginx.org/download/nginx-$NGINX_VERSION.tar.gz -o nginx.tar.gz \t&& curl -fSL https://freenginx.org/download/nginx-$NGINX_VERSION.tar.gz.asc -o nginx.tar.gz.asc \t&& curl -fSL https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz -o openssl.tar.gz \t&& curl -fSL https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz.asc -o openssl.tar.gz.asc \t&& export GNUPGHOME=\"$(mktemp -d)\" \t&& found=''; \tfor server in \t\tkeys.gnupg.net \t\tha.pool.sks-keyservers.net \t\thkp://keyserver.ubuntu.com:80 \t\thkp://p80.pool.sks-keyservers.net:80 \t\tpgp.mit.edu \t; do \t\techo \"Fetching NGINX GPG key $GPG_KEYS_NGINX from $server\"; \t\techo \"Fetching OPENSSL GPG key $GPG_KEYS_OPENSSL from $server\"; \t\tgpg --keyserver \"$server\" --keyserver-options timeout=10 --recv-keys \"$GPG_KEYS_NGINX\" \"$GPG_KEYS_OPENSSL\" && found=yes && break; \tdone; \ttest -z \"$found\" && echo >&2 \"error: failed to fetch GPG key $GPG_KEYS_NGINX $GPG_KEYS_OPENSSL\" && exit 1; \tgpg --batch --verify nginx.tar.gz.asc nginx.tar.gz; \tgpg --batch --verify openssl.tar.gz.asc openssl.tar.gz; \trm -rf \"$GNUPGHOME\" nginx.tar.gz.asc openssl.tar.gz.asc \t&& mkdir -p /usr/src \t&& tar -zxC /usr/src -f nginx.tar.gz \t&& tar -zxC /usr/src -f openssl.tar.gz \t&& rm nginx.tar.gz \t&& rm openssl.tar.gz \t&& cd /usr/src/nginx-$NGINX_VERSION \t&& ./configure $CONFIG --with-debug \t&& make -j$(getconf _NPROCESSORS_ONLN) \t&& mv objs/nginx objs/nginx-debug \t&& mv objs/ngx_http_xslt_filter_module.so objs/ngx_http_xslt_filter_module-debug.so \t&& mv objs/ngx_http_image_filter_module.so objs/ngx_http_image_filter_module-debug.so \t&& mv objs/ngx_http_geoip_module.so objs/ngx_http_geoip_module-debug.so \t&& mv objs/n
Push Docker image to multiple registries
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, docker/login-action@v2, docker/setup-qemu-action@v2, docker/setup-buildx-action@v2, docker/build-push-action@v4. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.