Skip to content

Merge branch 'production' of https://github.com/fsek/farad into produ… #14

Merge branch 'production' of https://github.com/fsek/farad into produ…

Merge branch 'production' of https://github.com/fsek/farad into produ… #14

Workflow file for this run

name: Deploy Farad
on:
push:
branches:
- production
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: npm ci
- name: Build Project
run: npm run build
- uses: appleboy/scp-action@v0.1.7
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
source: "./dist/*"
target: "/test"