-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (38 loc) · 900 Bytes
/
main.yml
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
name: CICD
on:
push:
branches:
- release
merge_group:
branches:
- release
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Install rsync
run: sudo apt-get install rsync -y
- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 8
run_install: true
- name: pnpm i
run: pnpm i
- name: build
run: npx craco build
env:
CI: true
ESLINT_NO_DEV_ERRORS: true
- name: Deploy to Server
uses: easingthemes/[email protected]
with:
SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_KEY }}
REMOTE_HOST: ${{ secrets.REMOTE_HOST }}
REMOTE_USER: root
SOURCE: /build
TARGET: /www/temp