Fix repo name in the report.
This commit is contained in:
parent
e86642e1c8
commit
1fe6b724fb
|
@ -73,7 +73,7 @@ pipeline {
|
|||
stage(projects[i]) {
|
||||
echo "About to execute over ${projects[i]}"
|
||||
checkout_and_exec(projects[i], action_code)
|
||||
sh "echo -e ${projects[i]},${repo_root}/${repo_name},Completed >> $ACTION_REPORT"
|
||||
sh "echo -e ${projects[i]},${repo_root}/${projects[i]},Completed >> $ACTION_REPORT"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env bash
|
||||
touch new_file2.txt
|
||||
echo "Hello from gCube Actions 2" >> new_file2.txt
|
||||
git add new_file2.txt
|
||||
git commit -m "Add new_file2.txt from gCube Actions"
|
||||
touch new_file3.txt
|
||||
echo "Hello from gCube Actions 3" >> new_file3.txt
|
||||
git add new_file3.txt
|
||||
git commit -m "Add new_file3.txt from gCube Actions"
|
Loading…
Reference in New Issue