Skip to content

Some adjustments

Some adjustments #3

Workflow file for this run

name: Deploy to VPS
on:
push:
branches: [ "release" ]
pull_request:
branches: [ "release" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Deploy and run install script
uses: appleboy/ssh-action@v0.1.8
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
port: ${{ secrets.PORT }}
key: ${{ secrets.SSH_KEY }}
script: |
cd wheelbarrow-v2/repo
. ./docker-deploy.sh >/dev/null 2>&1 &