-
-
Notifications
You must be signed in to change notification settings - Fork 1
67 lines (67 loc) · 1.99 KB
/
main-deployment.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
55
56
57
58
59
60
61
62
63
64
65
66
67
name: test-deployment
run-name: Test deployment with GH Actions
on:
push:
branchs:
- deploy
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.11'
- name: Enable and set up Yarn
run: |
corepack enable
yarn set version stable
- name: Install packages and build
run: |
yarn install
yarn run build-main
- name: Get production artifact
uses: actions/upload-artifact@v4
with:
name: production-build
path: dist
deploy:
runs-on: ubuntu-latest
env:
SERVER_NAME: ${{ vars.SERVER_NAME }}
needs: build
steps:
- uses: actions/checkout@v4
- name: Download production articfact
uses: actions/download-artifact@v4
with:
name: production-build
- name: Prepare folders on production server
uses: appleboy/[email protected]
with:
host: ${{ secrets.SERVER_NAME }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SERVER_SSH_KEY }}
port: ${{ secrets.SERVER_SSH_PORT }}
script: |
rm -rf /var/www/webface
mkdir /var/www/webface
- name: Copy build to production server
uses: appleboy/[email protected]
with:
host: ${{ secrets.SERVER_NAME }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SERVER_SSH_KEY }}
port: ${{ secrets.SERVER_SSH_PORT }}
source: main/*
target: /var/www/webface/
- name: Make correct folder structure
uses: appleboy/[email protected]
with:
host: ${{ secrets.SERVER_NAME }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SERVER_SSH_KEY }}
port: ${{ secrets.SERVER_SSH_PORT }}
script: |
cp -r /var/www/webface/main/* /var/www/webface/
rm -r /var/www/webface/main