From 8eef3b9b7e943a7ba13bec6961d2a702ce5a5499 Mon Sep 17 00:00:00 2001 From: Arc-E-Tect Date: Thu, 18 Jul 2024 23:45:30 +0200 Subject: [PATCH] fix: do the git push --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f5854d8..22f50f5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -54,9 +54,9 @@ jobs: # Replace the string in file sed -i "s/$REGEX/v$VERSION, $DATE/g" $FILE -# - name: Commit and push changes -# run: | -# git config --local user.email "action@github.com" -# git config --local user.name "GitHub Action" -# git commit -am "Update version and date in file" -# git push \ No newline at end of file + - name: Commit and push changes + run: | + git config --local user.email "sedr@arc-e-tect.com" + git config --local user.name "Arc-E-Tect" + git commit -am "Update version and date in file" + git push \ No newline at end of file