Github action to execute remote commands on a server using SSHPASS

Url: sshpass-github-action

Example of use

- name: Run sshpass commands
  uses: matheusvanzan/sshpass-action@v1
  with:
    host: ${{ secrets.SERVER_HOST }}
    username: ${{ secrets.SERVER_USERNAME }}
    password: ${{ secrets.SERVER_PASSWORD }}
    run: |
      # your 
      # commands
      # here