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 diff --git a/pyproject.toml b/pyproject.toml index cf594874..a60d189c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Deadbot" -version = "1.9.3" +version = "1.9.4" description = "Bot that lives to serve deadlock.wiki" readme = "README.md" authors=[]