Skip to content

Commit

Permalink
Merge pull request #138 from 16bravo/bugfix/error_in_yaml_files
Browse files Browse the repository at this point in the history
correction yaml files
  • Loading branch information
16bravo authored Jan 30, 2024
2 parents f60f07d + 8d17daf commit ab86cf7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/020_update_database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,23 +60,23 @@ jobs:

- name: Run Match Calculation script
if: steps.check-db.outputs.update_ok == 'true'
run: python scripts/020_DB_Update/scripts/020_DB_Update/022_Calculate_Matches_Points.py
run: python scripts/020_DB_Update/022_Calculate_Matches_Points.py

- name: Run Annual Ranking Calculation script
if: steps.check-db.outputs.update_ok == 'true'
run: python scripts/020_DB_Update/scripts/020_DB_Update/023_Calculate_Annual_Ranking.py
run: python scripts/020_DB_Update/023_Calculate_Annual_Ranking.py

- name: Run Ranking Dataset Cleaning script
if: steps.check-db.outputs.update_ok == 'true'
run: python scripts/020_DB_Update/scripts/020_DB_Update/024_Clean_Rankings_Data.py
run: python scripts/020_DB_Update/024_Clean_Rankings_Data.py

- name: Run Ranking Data Insert script
if: steps.check-db.outputs.update_ok == 'true'
run: python scripts/020_DB_Update/scripts/020_DB_Update/025_Insert_Rankings.py
run: python scripts/020_DB_Update/025_Insert_Rankings.py

- name: Run Matches Data Insert script
if: steps.check-db.outputs.update_ok == 'true'
run: python scripts/020_DB_Update/scripts/020_DB_Update/026_Insert_Matches.py
run: python scripts/020_DB_Update/026_Insert_Matches.py

- name: Commit changes
if: steps.check-db.outputs.update_ok == 'true'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/020_update_database_daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,23 +49,23 @@ jobs:

- name: Run Match Calculation script
if: steps.check-db.outputs.update_ok == 'true'
run: python scripts/020_DB_Update/scripts/020_DB_Update/022_Calculate_Matches_Points.py
run: python scripts/020_DB_Update/022_Calculate_Matches_Points.py

- name: Run Annual Ranking Calculation script
if: steps.check-db.outputs.update_ok == 'true'
run: python scripts/020_DB_Update/scripts/020_DB_Update/023_Calculate_Annual_Ranking.py
run: python scripts/020_DB_Update/023_Calculate_Annual_Ranking.py

- name: Run Ranking Dataset Cleaning script
if: steps.check-db.outputs.update_ok == 'true'
run: python scripts/020_DB_Update/scripts/020_DB_Update/024_Clean_Rankings_Data.py
run: python scripts/020_DB_Update/024_Clean_Rankings_Data.py

- name: Run Ranking Data Insert script
if: steps.check-db.outputs.update_ok == 'true'
run: python scripts/020_DB_Update/scripts/020_DB_Update/025_Insert_Rankings.py
run: python scripts/020_DB_Update/025_Insert_Rankings.py

- name: Run Matches Data Insert script
if: steps.check-db.outputs.update_ok == 'true'
run: python scripts/020_DB_Update/scripts/020_DB_Update/026_Insert_Matches.py
run: python scripts/020_DB_Update/026_Insert_Matches.py

- name: Commit changes
if: steps.check-db.outputs.update_ok == 'true'
Expand Down

0 comments on commit ab86cf7

Please sign in to comment.