From e6a34877213e8d430a6d25e38f1dd99c7dfe0028 Mon Sep 17 00:00:00 2001 From: Cubicroot Date: Mon, 11 Oct 2021 19:29:01 +0200 Subject: [PATCH] set git user --- .github/workflows/documentation.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 4cb6e93..9a594ef 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -37,6 +37,8 @@ jobs: run: mkdir website && git clone git@github.com:pushbits/website.git website - name: Copy index.html run: cp index.html website/index.html + - name: Set git config + run: git config --global user.email "pipeline@pushbits.io" && git config --global user.name "Pushbits Pipeline" - name: Commit and push env: SSH_AUTH_SOCK: /tmp/ssh_agent.sock