Skip to content

Commit ba6f57d

Browse files
committed
fix
Signed-off-by: Junpu Fan <[email protected]>
1 parent 8c6eee6 commit ba6f57d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/reusable-test-execution.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,9 @@ jobs:
213213
# Build volume arguments
214214
VOLUME_ARGS=""
215215
for volume in $(echo '${{ inputs.container-volumes }}' | jq -r '.[]'); do
216-
VOLUME_ARGS="$VOLUME_ARGS -v $volume"
216+
# Expand environment variables in volume paths
217+
expanded_volume=$(eval echo "$volume")
218+
VOLUME_ARGS="$VOLUME_ARGS -v $expanded_volume"
217219
done
218220
219221
# Build environment arguments

0 commit comments

Comments
 (0)