I have a bash script on a server which is used to build a software project and then runs some scripts over it. Right now I need to access it via ssh and call it with a syntax like this: ./buildscript.sh branch_name it then pulls the code from git and builds the branch given as the parameter.
What I want is to make this easier accessible via a web GUI where I might see a dropdown list of available branches and a button to start the build process.
My question is with which technology can I achieve something like this? And how to start maybe?
Im grateful for any hints or tips! Thanks!