From c57206b96013884dc5ebd4a258d9bd546c40fff0 Mon Sep 17 00:00:00 2001 From: Minoplhy Date: Sun, 12 Jan 2025 12:12:53 +0700 Subject: [PATCH] test: output running directory --- .github/workflows/alpine-nginx-build.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/alpine-nginx-build.yaml b/.github/workflows/alpine-nginx-build.yaml index bdc8dc2..bb554ca 100644 --- a/.github/workflows/alpine-nginx-build.yaml +++ b/.github/workflows/alpine-nginx-build.yaml @@ -4,6 +4,7 @@ on: push: tags: - alpine-nginx-* + workflow_dispatch: jobs: build_nginx: runs-on: [ubuntu-latest] @@ -31,10 +32,13 @@ jobs: - name: Run nginx Builds run: | build_sh='echo "${NGINX_TAG}" - TAGS="vanilla" OPTIONS="--type=nginx" + RUNNING_PATH=$(pwd) + echo "RUNNING PATH: ${RUNNING_PATH}" # This output where in the system is running + echo "HOME PATH: ${HOME}" + for i in ${!TAGS[@]}; do echo "This Task will be run using the following tag: ${NGINX_TAG}" echo "This Task will be run using the following version: ${TAGS[$i]}"