Skip to content

Commit

Permalink
fix: create volume folder for dind in smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
lakkeger committed Jul 24, 2024
1 parent 913e6e6 commit f0e3f87
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/actions/smoke-test/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ if [ "${OPTION_PROPERTY}" != "" ] && [ "${OPTION_PROPERTY}" != "null" ] ; then
OPTION_VALUE_ESCAPED=$(sed -e 's/[]\/$*.^[]/\\&/g' <<<"${OPTION_VALUE}")
find ./ -type f -print0 | xargs -0 sed -i "s/${OPTION_KEY}/${OPTION_VALUE_ESCAPED}/g"

if [ "${OPTION}" == "volumePath" ] ; then
mkdir -p ${SRC_DIR}/${OPTION_VALUE}
fi

unset OPTION_VALUE
done
fi
Expand Down

0 comments on commit f0e3f87

Please sign in to comment.