Skip to content

Commit 981bd60

Browse files
authored
Merge pull request #53 from mkhansenbot/update-build-workflow
Update build workflow - (issue #52)
2 parents c316131 + 7e82581 commit 981bd60

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/docker-image.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ jobs:
1919
run: |
2020
# find the build.sh scripts and execute them
2121
echo "Running all build.sh scripts in repo"
22+
path=$(pwd)
2223
for f in $(find . -iname 'build.sh')
2324
do
24-
$f || exit 1
25+
(cd $(dirname $f) && ./build.sh && cd $path) || (echo $f "Failed" && exit 1)
2526
done
2627
echo "Done running build.sh scripts"

0 commit comments

Comments
 (0)