-
Notifications
You must be signed in to change notification settings - Fork 34
51 lines (42 loc) · 1.64 KB
/
prod-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
name: Production CD
on:
workflow_dispatch:
jobs:
deploy:
runs-on: [self-hosted, rpi, prod]
environment: yacs-rpi-prod
env:
HOST: ${{ secrets.HOST }}
ADMIN_PASS: ${{ secrets.ADMIN_PASS }}
DB_PASS: ${{ secrets.DB_PASS }}
AUTO_LE: yes
API_WORKERS: 8
steps:
# - name: Wait for tests to succeed
# uses: lewagon/[email protected]
# with:
# ref: ${{ github.ref }}
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# check-name: pytest
# - name: Wait for lighthouse tests to succeed
# uses: lewagon/[email protected]
# with:
# ref: ${{ github.ref }}
# repo-token: ${{ secrets.GITHUB_TOKEN }}
# check-name: 'Lighthouse CI'
- uses: actions/checkout@v2
with:
ref: master
- name: Build images
run: |
docker-compose -f docker-compose.yml -f docker-compose.production.yml build yacs_api yacs_web
- name: Update yacs_api
run: |
docker-compose -f docker-compose.yml -f docker-compose.production.yml stop yacs_api &&
docker-compose -f docker-compose.yml -f docker-compose.production.yml rm -f yacs_api &&
docker-compose -f docker-compose.yml -f docker-compose.production.yml up -d yacs_api
- name: Update yacs_web
run: |
docker-compose -f docker-compose.yml -f docker-compose.production.yml stop yacs_web &&
docker-compose -f docker-compose.yml -f docker-compose.production.yml rm -f yacs_web &&
docker-compose -f docker-compose.yml -f docker-compose.production.yml up -d yacs_web