Skip to main content

Easy SSH based Continuous delivery pipeline

If you have a Virtual Private Server(VPS) and want to have the code you push to github/VCS, be deployed in your server, here is a super simple and quick way to do so.

It basically involves creating a github action workflow that does the following.

name: Deploy to Server
on:
  push:
    branches:
      - main
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - name: Install sshpass
        run: |
                    sudo apt install sshpass -y
      - name: Git pull and Deploy with Docker Compose
        run: |
                    sshpass -p ${{ secrets.SERVER_PASS }} ssh -o StrictHostKeyChecking=no ${{ secrets.SERVER_NAME }} "cd project-folder && git pull && docker compose up -d"

Pre-Requisites

  • Install git and docker on your VM
  • configure your vm for ssh
  • store the server ssh url and server ssh password as github secrets with the same variable names as mentioned above in the workflow

What the workflow does

  • Installs sshpass on the github VM
  • Does SSH to your VM with sshpass
  • Runs the command to
    • git clone the repository
    • run the command to start the project(docker compose up in this case )

Customisability

  • Currently it’s based on docker. But you can easily replace the final command with anything else to build your product (eg: make or npx serve)
  • Replace project-folder with the path to the folder in which you have the project. sshpass will run the command to clone the latest version from VCS to this folder and will run the start/build/serve command.

For AWS ec2 or servers requiring pem file based auth

Use the following workflow yaml

name: Deploy to AWS EC2

on:
  push:
    branches:
      - main

jobs:
  deploy:
    runs-on: ubuntu-latest

    steps:
      - name: Add SSH Key
        run: echo "${{ secrets.AWS_SECRET }}" > ssh_key.pem && chmod 600 ssh_key.pem

      - name: Deploy to AWS EC2
        run: |
                    ssh -i ssh_key.pem -o StrictHostKeyChecking=no ${{ secrets.EC2_ADDRESS }} "cd ~/project/ && git pull origin main && sudo docker compose restart"
        env:
          PRIVATE_KEY: ${{ secrets.DEPLOY_KEY }}

Just add the contents of pem file to AWS_SECRET. Then add the username@aws-ip to the EC2_ADDRESS secret as well

How did this come to be?

It basically started of by thinking about the steps you would do to push your code to production without having to automate it. This would come to have the following steps in a really high level way:

  1. Pushing your local code to a VCS.
  2. SSH-ing to your VPS
  3. Pulling the code from VCS to the server
  4. Running the start command

Now, what are github actions? A way to run linux commands when certain events occur in github. So can we combine them both? Of course yes. There you go.🙂

Things to note

  1. I use ssh-pass to do steps 2,3 and 4 at once. sshpass allows you to ssh to a server and run custom commands on it as the user doing SSH.

    You can also use rsync

    SSHPass is first installed in the serverless instance where the github action is run.

  2. Store the SSH username and passwords as a Github secret to not let it be exposed.

  3. In the workflow file, don’t have commands with any stateful logic as the workflow instance would be a fresh one each time.