-
Notifications
You must be signed in to change notification settings - Fork 18
49 lines (43 loc) · 1.15 KB
/
react-prod.yml
File metadata and controls
49 lines (43 loc) · 1.15 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: React deploy
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches:
- main
paths:
- "react/**"
#pull_request:
# types:
# - closed
# branches:
# - main
jobs:
#if_merged:
# if: github.event.pull_request.merged == true
React-Deploy:
name: 🎉 React Deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v4
- name: Use Node.js 24
uses: actions/setup-node@v4
with:
node-version: "24"
- name: 🔨 Build Project
run: |
cd react
corepack yarn install
corepack yarn build
- name: 📂 Deploy to Server
uses: easingthemes/ssh-deploy@main
env:
SSH_PRIVATE_KEY: ${{ secrets.SERVER_SSH_KEY }}
# ARGS: "-rltgoDzvO --delete"
SOURCE: "react/dist/"
REMOTE_HOST: 145.79.3.173
REMOTE_USER: u965251139
REMOTE_PORT: "65002"
TARGET: domains/dashboardkit.cc/public_html/react/free
EXCLUDE: "/react/node_modules/"