Skip to content
Snippets Groups Projects
Commit c108f5ec authored by Kwangjin Lee's avatar Kwangjin Lee
Browse files

modify sync to help verify if the .py can be checked

parent 9097368f
No related branches found
No related tags found
No related merge requests found
Pipeline #250851 failed
......@@ -58,7 +58,14 @@ sync_notebooks:
stage: sync
extends: .install_dependencies
script:
- echo "Executing sync script at ${SYNC_SCRIPT_PATH}"
- ls -l ${SYNC_SCRIPT_PATH} # This will help verify the file exists and has correct permissions
- python ${SYNC_SCRIPT_PATH} ./src ./clean
- |
if [ -n "$(find . -name '*.conflicts')" ]; then
echo "Conflicts detected. Please review the .conflicts files."
exit 1
fi
artifacts:
paths:
- src/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment