File tree Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Expand file tree Collapse file tree 1 file changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -35,18 +35,25 @@ jobs:
35
35
with :
36
36
install : true
37
37
38
- - name : Debug Environment Variables
39
- if : ${{ inputs.enable_env_var_debugging == true }} # Only run when debugging is enabled
40
- run : |
41
- echo "=== ALL BUILD ARGS ===" && env | sort
42
-
43
38
- name : Docker login
44
39
uses : docker/login-action@v2
45
40
with :
46
41
registry : ${{ env.REGISTRY }}
47
42
username : ${{ github.actor }}
48
43
password : ${{ secrets.GITHUB_TOKEN }}
49
44
45
+ - name : Debug Environment Variables
46
+ if : ${{ inputs.enable_env_var_debugging == true }} # Only run when debugging is enabled
47
+ run : |
48
+ echo "Building with the following environment variables:" && \
49
+ echo "NEXT_PUBLIC_BACKEND_SERVICE_PROTOCOL: ${NEXT_PUBLIC_BACKEND_SERVICE_PROTOCOL}" && \
50
+ echo "NEXT_PUBLIC_BACKEND_SERVICE_HOST: ${NEXT_PUBLIC_BACKEND_SERVICE_HOST}" && \
51
+ echo "NEXT_PUBLIC_BACKEND_SERVICE_PORT: ${NEXT_PUBLIC_BACKEND_SERVICE_PORT}" && \
52
+ echo "NEXT_PUBLIC_BACKEND_API_VERSION: ${NEXT_PUBLIC_BACKEND_API_VERSION}" && \
53
+ echo "FRONTEND_SERVICE_INTERFACE: ${FRONTEND_SERVICE_INTERFACE}" && \
54
+ echo "FRONTEND_SERVICE_PORT: ${FRONTEND_SERVICE_PORT}"
55
+
56
+
50
57
- name : Set image tag
51
58
id : vars
52
59
run : |
You can’t perform that action at this time.
0 commit comments