We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c6eee6 commit ba6f57dCopy full SHA for ba6f57d
.github/workflows/reusable-test-execution.yml
@@ -213,7 +213,9 @@ jobs:
213
# Build volume arguments
214
VOLUME_ARGS=""
215
for volume in $(echo '${{ inputs.container-volumes }}' | jq -r '.[]'); do
216
- VOLUME_ARGS="$VOLUME_ARGS -v $volume"
+ # Expand environment variables in volume paths
217
+ expanded_volume=$(eval echo "$volume")
218
+ VOLUME_ARGS="$VOLUME_ARGS -v $expanded_volume"
219
done
220
221
# Build environment arguments
0 commit comments