From 1074164cf5b4075ed19bc8a04f1c8e549ec23d48 Mon Sep 17 00:00:00 2001 From: Marek Blaha Date: Mon, 6 Nov 2023 11:36:04 +0100 Subject: [PATCH] Fix weblate repo checkout path --- .github/workflows/weblate-sync-pot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/weblate-sync-pot.yml b/.github/workflows/weblate-sync-pot.yml index 4ac3d99b0..ff29d87df 100644 --- a/.github/workflows/weblate-sync-pot.yml +++ b/.github/workflows/weblate-sync-pot.yml @@ -39,8 +39,8 @@ jobs: - name: Commit .pot to weblate repo run: | - cp src/libdnf5/po/libdnf5.pot weblate/libdnf5/libdnf5.pot + cp src/libdnf5/po/libdnf5.pot l10n/libdnf5/libdnf5.pot git config --global user.name "GitHub Workflow" git config --global user.email "mblaha@redhat.com" - git -C weblate commit -m "Update source file" -- libdnf5/libdnf5.pot - git -C weblate push + git -C l10n commit -m "Update source file" -- libdnf5/libdnf5.pot + git -C l10n push