-
Notifications
You must be signed in to change notification settings - Fork 3
34 lines (31 loc) · 915 Bytes
/
deploy-backend.yml
File metadata and controls
34 lines (31 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Deploy React Frontend
on:
push:
branches: [ master ]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'npm'
- name: Install Dependencies
run: npm install --legacy-peer-deps
- name: Build Project
# TODO: Fix all lints and replace with "build"
run: npm run buildWithoutLints
- name: Deploy Static Files to VPS
uses: appleboy/scp-action@v1.0.0
with:
host: ${{ secrets.VPS_IP }}
username: ${{ secrets.VPS_USER }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
port: ${{ secrets.VPS_PORT }}
source: "dist/*"
target: "/var/www/market/frontend/"
strip_components: 1
overwrite: true