From 4eb5a9adc61c4e116feb09208091efb914275da2 Mon Sep 17 00:00:00 2001 From: Roman Kelesidis Date: Thu, 6 Feb 2025 15:21:51 +0300 Subject: [PATCH] misc(checksum workflow): Fixed incorrect file path (#1799) --- .github/workflows/checksum.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checksum.yml b/.github/workflows/checksum.yml index fab9ae762..dac3e3778 100644 --- a/.github/workflows/checksum.yml +++ b/.github/workflows/checksum.yml @@ -25,7 +25,7 @@ jobs: if git diff --quiet internal_data/checksums.md5; then echo "No changes in checksums.md5" else - git add checksums.md5 + git add internal_data/checksums.md5 git commit -m "Update checksums.md5 📄" git push fi