I would like to migrate from bitbucket to github. I use bitbucket pipeline to manually send code in production with git push ssh://user@site:path master with is my bitbucket pipeline
clone:
depth: full
pipelines:
custom:
deployment-to-prod:
- step:
deployment: production
script:
- git push ssh://user@site:path master
I would like to do the same think with github action but I don't know how to do it can you help me please ? Does someone has already did it ?
Thanls