-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (38 loc) · 1.19 KB
/
extract-tools.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
name: extract-tools
on:
schedule:
# Run at 00:42 every day
- cron: '42 0 * * *'
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
extract-tools:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Extract HDR UK Gateway Tools
env:
DATABASE: ${{ secrets.DATABASE }}
DATABASE_CONN_URI: ${{ secrets.DATABASE_CONN_URI }}
run: python3 scripts/extract-tools.py
- name: Commit extracts to master branch
uses: stefanzweifel/[email protected]
with:
commit_message: Commit new tools
branch: ${{ github.head_ref }}
commit_user_name: Susheel Varma
commit_user_email: [email protected]
commit_author: Susheel Varma <[email protected]>