File tree Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Expand file tree Collapse file tree 1 file changed +5
-10
lines changed Original file line number Diff line number Diff line change 54
54
"dockerfile": "./backend/user/express.Dockerfile",
55
55
"build-args": "port=$USER_EXPRESS_PORT"
56
56
}
57
- EOF
58
- )
57
+ EOF)
59
58
matrix+=("$config")
60
59
fi
61
60
if [[ "${{ steps.filter.outputs.question }}" == "true" || "${{ contains(github.ref, 'main') }}" == "true" ]]; then
67
66
"dockerfile": "./backend/question/express.Dockerfile",
68
67
"build-args": "port=$QUESTION_EXPRESS_PORT"
69
68
}
70
- EOF
71
- )
69
+ EOF)
72
70
matrix+=("$config")
73
71
fi
74
72
if [[ "${{ steps.filter.outputs.collaboration }}" == "true" || "${{ contains(github.ref, 'main') }}" == "true" ]]; then
80
78
"dockerfile": "./backend/collaboration/express.Dockerfile",
81
79
"build-args": "port=$COLLAB_EXPRESS_PORT"
82
80
}
83
- EOF
84
- )
81
+ EOF)
85
82
matrix+=("$config")
86
83
fi
87
84
if [[ "${{ steps.filter.outputs.matching }}" == "true" || "${{ contains(github.ref, 'main') }}" == "true" ]]; then
93
90
"dockerfile": "./backend/matching/express.Dockerfile",
94
91
"build-args": "port=$MATCH_EXPRESS_PORT"
95
92
}
96
- EOF
97
- )
93
+ EOF)
98
94
matrix+=("$config")
99
95
fi
100
96
if [[ "${{ steps.filter.outputs.frontend }}" == "true" || "${{ contains(github.ref, 'main') }}" == "true" ]]; then
@@ -106,8 +102,7 @@ jobs:
106
102
"dockerfile": "./frontend/frontend.Dockerfile",
107
103
"build-args": "port=$FRONTEND_PORT"
108
104
}
109
- EOF
110
- )
105
+ EOF)
111
106
matrix+=("$config")
112
107
fi
113
108
formatted_matrix=$(echo "[${matrix[*]}]" | jq -c .)
You can’t perform that action at this time.
0 commit comments