diff --git a/Jenkinsfile b/Jenkinsfile index 89a6ed5..5746059 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" } } } diff --git a/actions/first.sh b/actions/first.sh index 0004eb2..bd0bcaf 100755 --- a/actions/first.sh +++ b/actions/first.sh @@ -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" \ No newline at end of file +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" \ No newline at end of file