From 45a2c157afc77f6fd3404f3c1a90013d715da6ef Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Wed, 5 May 2021 17:58:28 +0200 Subject: [PATCH] fix small git bug in new test release workflow --- .github/workflows/apps.release.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/apps.release.yaml b/.github/workflows/apps.release.yaml index 83987d7c41a..c519b6851ff 100644 --- a/.github/workflows/apps.release.yaml +++ b/.github/workflows/apps.release.yaml @@ -27,10 +27,6 @@ jobs: repository: truecharts/catalog token: ${{ secrets.BOT_TOKEN }} path: catalog - - name: Configure Git - run: | - git config user.name "TrueCharts-Bot" - git config user.email "bot@truecharts.org" - name: Remove if release already exists run: | for chart in master/test/*; do @@ -58,6 +54,8 @@ jobs: done - name: Commit and Push new App releases run: | + git config user.name "TrueCharts-Bot" + git config user.email "bot@truecharts.org" cd catalog git add --all git commit -sm "Commit new App releases for TrueCharts" || exit 0