Skip to content

Commit 8633ab3

Browse files
Fix ODH notebooks sync workflow
1 parent 713d011 commit 8633ab3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/odh-notebooks-sync.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ jobs:
9292
for dir in "${directories[@]}"; do
9393
counter=$((counter+1))
9494
echo "--Processing directory $counter '$dir' of total $total"
95-
cd "$dir" && pipenv install ${package_name}~="${CODEFLARE_RELEASE_VERSION}" && pipenv --rm && cd -
95+
cd "$dir" && pipenv run pip install ${package_name}~="${CODEFLARE_RELEASE_VERSION}" && pipenv lock --pre --clear && pipenv --rm --clear
96+
cd -
9697
echo "$((total-counter)) directories remaining.."
9798
done
9899
else

0 commit comments

Comments
 (0)