How can i use it with github actions? #188
-
I need to use mrsk to deploy apps using github actions. How can i share the ssh key for this to work? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Generate a SSH key for deploys to your servers and add it to GitHub as a secret. Then use a GitHub action to install the SSH key before running MRSK. You can automate some of this with prebuilt actions such as these:
Good luck! Please do share your results. |
Beta Was this translation helpful? Give feedback.
-
Also, you might need to create a separate GitHub token as the default one does not give access to the ghcr.io docker repository. |
Beta Was this translation helpful? Give feedback.
-
@jeremy Please consider adding this to the docs |
Beta Was this translation helpful? Give feedback.
Generate a SSH key for deploys to your servers and add it to GitHub as a secret. Then use a GitHub action to install the SSH key before running MRSK.
You can automate some of this with prebuilt actions such as these:
Good luck! Please do share your results.