-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (56 loc) · 1.55 KB
/
deploy.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
68
69
70
name: Deploy to heroku
on:
release:
types: [created]
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
npm ci
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Linting
run: npm run lint
- name: Run tests
run: npm test
- uses: akhileshns/[email protected]
with:
heroku_api_key: ${{secrets.HEROKU_API_KEY}}
heroku_app_name: "openerz"
heroku_email: ${{secrets.HEROKU_EMAIL}}
update_data:
needs: deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
npm ci
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Validate config
run: ./validate_config.py
- name: Update database
run: ./load_data_in_database.sh
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}