From 304a926b0a2c5f9edb8adac93557758115d6b004 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Tue, 6 Jul 2021 20:42:38 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Bump=20date=20on=20/Version.h?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/bump-date.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/bump-date.yml b/.github/workflows/bump-date.yml index 54902da8c9..a1942777d1 100644 --- a/.github/workflows/bump-date.yml +++ b/.github/workflows/bump-date.yml @@ -28,6 +28,7 @@ jobs: # Inline Bump Script DIST=$( date +"%Y-%m-%d" ) eval "sed -E -i 's/(#define +STRING_DISTRIBUTION_DATE) .*$/\1 \"$DIST\"/g' Marlin/src/inc/Version.h" && \ + eval "sed -E -i 's/(#define +STRING_DISTRIBUTION_DATE) .*$/\1 \"$DIST\"/g' Marlin/Version.h" && \ git config user.name "${GITHUB_ACTOR}" && \ git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" && \ git add . && \