best git bash command to start your dotnet application
Heya! I have a running pipeline and I would like to know what command is best practice in a git bash to run and update the already running dotnet app in production
4 Replies
You normally wouldn't be using git to update an app in production.
I know
I'm using a bash for github actions tho
What actually triggers this github action?
Because if you're trying to manually run a github action, and you've configured to run on
workflow_dispatch
, then you probably want to use the github CLI and not git bash.You could make github actions push an image of your program to docker and from there you pull it on a server