-
Notifications
You must be signed in to change notification settings - Fork 1
95 lines (80 loc) · 2.45 KB
/
ci.yml
File metadata and controls
95 lines (80 loc) · 2.45 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: CI/CD Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install frontend dependencies
run: npm install
working-directory: ./frontend
- name: Lint frontend
run: npm run lint
working-directory: ./frontend
continue-on-error: true
build-and-push:
runs-on: ubuntu-latest
needs: lint
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PASS }}
- name: Build and push frontend image
uses: docker/build-push-action@v4
with:
context: ./frontend
file: ./frontend/Dockerfile.prod
push: true
tags: ${{ secrets.DOCKERHUB_USER }}/frontend:latest
- name: Build and push backend image
uses: docker/build-push-action@v4
with:
context: ./backend
file: ./backend/Dockerfile.prod
push: true
tags: ${{ secrets.DOCKERHUB_USER }}/backend:latest
- name: Build and push service image
uses: docker/build-push-action@v4
with:
context: ./service
file: ./service/Dockerfile.prod
push: true
tags: ${{ secrets.DOCKERHUB_USER }}/service:latest
deploy:
runs-on: ubuntu-latest
needs: build-and-push
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Build frontend
run: npm install && npm run build
working-directory: ./frontend
- name: Deploy Frontend to Netlify
uses: nwtgck/actions-netlify@v2
with:
publish-dir: './frontend/dist'
production-branch: main
deploy-message: "Deploy from GitHub Actions"
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
timeout-minutes: 1
- name: Deploy Backend to Render
run: curl -X POST ${{ secrets.RENDER_BACKEND_DEPLOY_HOOK_URL }}
# - name: Deploy Service to Render
# run: curl -X POST ${{ secrets.RENDER_SERVICE_DEPLOY_HOOK_URL }}