From 8d17daf7589f12ad3c57081a37fdfc10e8b6061d Mon Sep 17 00:00:00 2001 From: 16bravo Date: Tue, 30 Jan 2024 20:57:27 +0100 Subject: [PATCH] correction yaml files --- .github/workflows/020_update_database.yml | 10 +++++----- .github/workflows/020_update_database_daily.yml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/020_update_database.yml b/.github/workflows/020_update_database.yml index d670d179..5c74ff6d 100644 --- a/.github/workflows/020_update_database.yml +++ b/.github/workflows/020_update_database.yml @@ -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' diff --git a/.github/workflows/020_update_database_daily.yml b/.github/workflows/020_update_database_daily.yml index b88bc717..72a87681 100644 --- a/.github/workflows/020_update_database_daily.yml +++ b/.github/workflows/020_update_database_daily.yml @@ -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'