From 17f22a71975ac49a1f6e4d00f99297a0dd324881 Mon Sep 17 00:00:00 2001 From: Nicholas Wallace Date: Sun, 10 Mar 2024 19:27:10 -0700 Subject: [PATCH] Fixed paths --- .github/workflows/i18n-automatic-branch.yml | 4 ++-- .github/workflows/i18n-manual-branch.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/i18n-automatic-branch.yml b/.github/workflows/i18n-automatic-branch.yml index 73c089498..43ea26233 100644 --- a/.github/workflows/i18n-automatic-branch.yml +++ b/.github/workflows/i18n-automatic-branch.yml @@ -6,7 +6,7 @@ on: - main # Only care about the main branch, don't care about any PRs or forks - master paths: - - strings/** # Should only check if any strings changed + - client/strings/** # Should only check if any strings changed jobs: update_translations: @@ -33,7 +33,7 @@ jobs: - name: Run Update JSON Files action uses: audiobookshelf/audiobookshelf-i18n-updater@v1.0.0-beta with: - directory: 'strings/' # Adjust the directory path as needed + directory: 'client/strings/' # Adjust the directory path as needed # Does a git diff to see if any language files were changed from running # the script. This will be false if the local script was already ran diff --git a/.github/workflows/i18n-manual-branch.yml b/.github/workflows/i18n-manual-branch.yml index a90ca4a24..8e1e2bc2e 100644 --- a/.github/workflows/i18n-manual-branch.yml +++ b/.github/workflows/i18n-manual-branch.yml @@ -6,7 +6,7 @@ on: - main # Only care about the main branch, don't care about any PRs or forks - master paths: - - strings/** # Should only check if any strings changed + - client/strings/** # Should only check if any strings changed jobs: update_translations: @@ -33,7 +33,7 @@ jobs: - name: Run Update JSON Files action uses: audiobookshelf/audiobookshelf-i18n-updater@v1.0.0-beta with: - directory: 'strings/' # Adjust the directory path as needed + directory: 'client/strings/' # Adjust the directory path as needed # Does a git diff to see if any language files were changed from running # the script. This will be false if the local script was already ran