From 1bc0a48cecf230547a4013d5475eb6e33c990737 Mon Sep 17 00:00:00 2001 From: rusefi Date: Wed, 17 Jun 2020 13:01:11 -0400 Subject: [PATCH] hopefully progress --- .github/workflows/set-date.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/set-date.yaml b/.github/workflows/set-date.yaml index a3f803942a..1a197504aa 100644 --- a/.github/workflows/set-date.yaml +++ b/.github/workflows/set-date.yaml @@ -22,9 +22,9 @@ jobs: - name: Write Date File run: | - echo -e -n "#pragma once\n#ifndef VCS_DATE\n#define VCS_DATE $(date "+%Y%m%d")\n#endif" > ./firmware/controllers/date_stamp.h + echo -e -n "#pragma once\n#define VCS_DATE $(date "+%Y%m%d")\n" > ./firmware/controllers/date_stamp.h git config --local user.email "action@github.com" - git config --local user.name "GitHub Action" + git config --local user.name "GitHub set-date Action" git commit -m "Update date" -a 2>&1 | grep -E '(nothing to commit|changed)' - name: Push changed date file