-
Notifications
You must be signed in to change notification settings - Fork 1
66 lines (59 loc) · 2.07 KB
/
Deploy-Angular.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
name: Angular-Deploy
on:
push:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Npm clean cache
working-directory: /home/runner/work/ModernaMedia/ModernaMedia/ModernaMediaAngular
run: |
npm cache clean --force
rm -rf node_modules/
rm package-lock.json
- name: npm install and npm run build:ssr
working-directory: /home/runner/work/ModernaMedia/ModernaMedia/ModernaMediaAngular
run: |
npm i
npm run build:ssr
- name: Deploy to prod
uses: garygrossgarten/github-action-scp@release
with:
local: /home/runner/work/ModernaMedia/ModernaMedia/ModernaMediaAngular/dist/
remote: /var/www/ModernaMedia/Angular/dist
host: ${{ secrets.HOST }}
username: ${{ secrets.HOST_NAME }}
password: ${{ secrets.HOST_PASSWORD }}
- name: Restart pm2
uses: garygrossgarten/github-action-ssh@v0.5.0
with:
command: pm2 restart ModernaMedia
host: ${{ secrets.HOST }}
username: ${{ secrets.HOST_NAME }}
password: ${{ secrets.HOST_PASSWORD }}
- name: Restart web-dev service
uses: garygrossgarten/github-action-ssh@v0.5.0
with:
command: systemctl restart nginx
host: ${{ secrets.HOST }}
username: ${{ secrets.HOST_NAME }}
password: ${{ secrets.HOST_PASSWORD }}