From 4eb32c8af8712f6d851290d61e843c650923d86b Mon Sep 17 00:00:00 2001 From: Alex Jarmoszuk <5645408+ajarmoszuk@users.noreply.github.com> Date: Sat, 13 Apr 2024 17:23:32 +0200 Subject: [PATCH] Update nginx-module-build.yml --- .github/workflows/nginx-module-build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nginx-module-build.yml b/.github/workflows/nginx-module-build.yml index 65d4859..1fda06b 100644 --- a/.github/workflows/nginx-module-build.yml +++ b/.github/workflows/nginx-module-build.yml @@ -23,7 +23,9 @@ jobs: - name: Clone NGINX source code run: | - git clone https://github.com/nginx/nginx.git ~/nginx-source + wget https://nginx.org/download/nginx-${VERSION}.tar.gz + tar -xvzf nginx-${VERSION}.tar.gz + mv nginx-${VERSION} nginx-source echo "NGINX_PATH=~/nginx-source" >> $GITHUB_ENV - name: Run build script