I am using GITLAB to deploy a script that pull information from a bunch of cisco switches, process these information and put them on an excel file to be more representable.
I am using CI-CD on gitlab with a docker runner that initiate an ubuntu image. Once this image is initiated. It pulls my master repository, execute the script and finaly generate my excel file (which already exist on my repository).
This script is successfully excecuted.
My question is how to update the excel file on my master repo with that new excel file that just have been generated on my docker appliance initiated with my gitlab runner??
Thanks,