From b0136c465d6745fe1be534ce4089cfe60761f7b8 Mon Sep 17 00:00:00 2001 From: Minoplhy Date: Sun, 22 Sep 2024 06:45:52 +0000 Subject: [PATCH] freenginx-build.yaml: change state name --- .github/workflows/freenginx-build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/freenginx-build.yaml b/.github/workflows/freenginx-build.yaml index d1bb16a..e84a123 100644 --- a/.github/workflows/freenginx-build.yaml +++ b/.github/workflows/freenginx-build.yaml @@ -19,25 +19,25 @@ jobs: echo "NGINX_TAG=${NGINX_TAG}" >> $GITHUB_ENV echo "NGINX_TAG=${NGINX_TAG}" - - name: Run Nginx Build (Vanilla) + - name: Run freenginx Build (Vanilla) run: | echo "This Task will be run using the following tag: ${NGINX_TAG}" curl https://raw.githubusercontent.com/minoplhy/scriptbox/main/nginx_build_script/build.sh | bash -s -- --nginx-tag=${NGINX_TAG} --no-lua --no-modsecurity --type=freenginx tar czvf nginx-${NGINX_TAG}-vanilla.tar.gz ~/nginx_scriptbox/nginx/objs - - name: Run Nginx Build (All Star) + - name: Run freenginx Build (All Star) run: | echo "This Task will be run using the following tag: ${NGINX_TAG}" curl https://raw.githubusercontent.com/minoplhy/scriptbox/main/nginx_build_script/build.sh | bash -s -- --nginx-tag=${NGINX_TAG} --type=freenginx tar czvf nginx-${NGINX_TAG}-allstar.tar.gz ~/nginx_scriptbox/nginx/objs /opt/nginx-lua-module /usr/local/lua /usr/local/modsecurity - - name: Run Nginx Build (Lua) + - name: Run freenginx Build (Lua) run: | echo "This Task will be run using the following tag: ${NGINX_TAG}" curl https://raw.githubusercontent.com/minoplhy/scriptbox/main/nginx_build_script/build.sh | bash -s -- --nginx-tag=${NGINX_TAG} --no-modsecurity --type=freenginx tar czvf nginx-${NGINX_TAG}-lua.tar.gz ~/nginx_scriptbox/nginx/objs /opt/nginx-lua-module /usr/local/lua - - name: Run Nginx Build (ModSecurity) + - name: Run freenginx Build (ModSecurity) run: | echo "This Task will be run using the following tag: ${NGINX_TAG}" curl https://raw.githubusercontent.com/minoplhy/scriptbox/main/nginx_build_script/build.sh | bash -s -- --nginx-tag=${NGINX_TAG} --no-lua --type=freenginx