-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 976 Bytes
/
Copy pathci-cd.yml
File metadata and controls
51 lines (42 loc) · 976 Bytes
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
name: CI/CD Pipeline
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
services:
db:
image: postgres:latest
env:
POSTGRES_DB: shop
POSTGRES_USER: user
POSTGRES_PASSWORD: password
ports:
- 5555:5555
options: >-
--health-cmd "pg_isready -U user"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and run Docker Compose
run: |
docker compose up --build -d
deploy:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Deploy application
run: |
# TODO: command for deployment