-
Notifications
You must be signed in to change notification settings - Fork 30
40 lines (33 loc) · 1.18 KB
/
create_db_derivatives.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
name: Create derivative databases
permissions:
contents: write # Allow action to write back changes to repository.
on:
push:
branches: ["main"]
paths:
- "plane-alert-db.csv"
- "plane-alert-ukraine.csv"
- "plane_images.csv"
- "scripts/create_db_derivatives.py"
jobs:
createDerivativeDatabases:
if: github.repository == 'sdr-enthusiasts/plane-alert-db' || ${{ vars.CREATE_DERIVATIVES }}
name: Update derivative databases
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- run: pip install -r ./scripts/requirements.txt
- name: Update '/400/' paths to '/full/'
run: python ./scripts/update_image_links.py
- name: Create category and images derivative CSV files
run: python ./scripts/create_db_derivatives.py
- name: Update README.md to include changes
run: python ./scripts/update_readme.py
- name: Commit derivative CSV files
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "refactor: update derivative databases."