From 818338f6f1645259e86b37ecbcf6a8b23ea657dc Mon Sep 17 00:00:00 2001 From: hassayag Date: Thu, 26 Mar 2026 12:43:33 +0000 Subject: [PATCH] ci: remove \r strings from commit message as it breaks deadlock-data notification --- .github/workflows/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 7710eacb..ee898b9e 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -179,10 +179,10 @@ jobs: DEADBOT_VERSION=$(grep -m1 '^version' pyproject.toml | sed 's/version *= *"\(.*\)"/\1/') echo "deadbot=$DEADBOT_VERSION" >> $GITHUB_OUTPUT - DEADLOCK_VERSION=$(grep '^ClientVersion=' "./decompiled-data/version.txt" | cut -d'=' -f2) + DEADLOCK_VERSION=$(grep '^ClientVersion=' "./decompiled-data/version.txt" | cut -d'=' -f2 | tr -d '\r') echo "deadlock=$DEADLOCK_VERSION" >> $GITHUB_OUTPUT - DATE=$(grep '^VersionDate=' "./decompiled-data/version.txt" | cut -d'=' -f2) + DATE=$(grep '^VersionDate=' "./decompiled-data/version.txt" | cut -d'=' -f2 | tr -d '\r') echo "date=$DATE" >> $GITHUB_OUTPUT - name: Commit and push input-data changes to deadbot