-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (44 loc) · 1.23 KB
/
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
47
48
49
50
51
52
53
54
name: Build site
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.5.1
- name: Install dependencies
run: npm install
- name: Build site
run: npm run build
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: build
path: build
retention-days: 1
deploy:
runs-on: ubuntu-latest
needs: build
if: success() && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main')
steps:
- name: Download Build Artifact
uses: actions/download-artifact@v4
with:
name: build
path: build
- name: Rsync Deployer
uses: imajeetyadav/[email protected]
with:
HOST: ${{ secrets.SERVER_IP }}
USERNAME: ${{ secrets.SSH_USER }}
KEY: ${{ secrets.SSH_PRIVATE_KEY }}
SOURCE_PATH: "./build/"
TARGET_PATH: "~/roqua_docs/html/"
PORT: 22
RSYNC_PARAMETERS: ""
DELETE_OPTION: "true"
EXCLUDE_LIST: ".git, .github"