Skip to content

use another marketplace action to do SSH #62

use another marketplace action to do SSH

use another marketplace action to do SSH #62

Workflow file for this run

name: Deploy
on:
push:
branches:
- better-deploy
jobs:
deploy:
if: ${{ github.repository_owner == 'vitessio' }}
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21.5
- name: executing remote ssh commands using password
uses: fifsky/ssh-action@master
with:
host: ${{ secrets.HOST }}
key: ${{ secrets.KEY }}
user: ${{ secrets.USERNAME }}
port: ${{ secrets.PORT }}
args: "-tt"
command: |
cd $HOME/vitess-bot
git reset --hard FETCH_HEAD
git clean -fd
git fetch origin main
git checkout FETCH_HEAD
killall -9 vitess-bot
source ~/.profile
go build -o vitess-bot ./go
nohup ./vitess-bot &