-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (47 loc) · 1.1 KB
/
cd.yaml
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
55
name: CD
on:
push:
branches:
- main
- develop
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Install node.js
uses: actions/setup-node@v4
with:
node-version: 16
- name: Check out code into directory
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Upload build result
uses: actions/upload-artifact@v4
with:
name: dist
path: ~/dist
delivery:
name: Delivery
runs-on: ubuntu-latest
needs: build
steps:
- name: Download build
uses: actions/download-artifact@v4
with:
name: dist
path: ./dist
- name: Transfer build files to server
uses: appleboy/[email protected]
with:
host: 185.241.194.24
username: ubuntu
key: ${{ secrets.PRIVATE_KEY }}
source: "dist/*"
target: "/var/www/nova-music/dist"
strip_components: 1