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