Skip to content

feat(streamer): implementing protobuf for NotifBrokerActor #4

feat(streamer): implementing protobuf for NotifBrokerActor

feat(streamer): implementing protobuf for NotifBrokerActor #4

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Deploy & Build
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SERVER_HOST }}
username: ${{ secrets.SERVER_USER }}
password: ${{ secrets.SERVER_PASSWORD }}
port: 22
script: | # cd SomeUiRepo directly cause we're already in root
if [ ! -d "/root/ui" ]; then
git clone https://wildonion:${{ secrets.ACCESS_TOKEN }}@github.com/wildonion/SomeUiRepo.git
fi
cd SomeUiRepo
git pull origin main
npm install
npm run build