Fix repo name in the report.

This commit is contained in:
Manuele Simi 2021-01-23 23:27:35 -05:00
parent e86642e1c8
commit 1fe6b724fb
2 changed files with 5 additions and 5 deletions

2
Jenkinsfile vendored
View File

@ -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"
}
}
}

View File

@ -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"