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