From: Trenton Holmes <797416+stumpylog@users.noreply.github.com> Date: Thu, 7 Dec 2023 03:20:08 +0000 (-0800) Subject: Sets the Git information before pushing the documentation build X-Git-Tag: v2.1.1~6^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d658150d4288ffaf7d9c186cffc1b3345d4c3453;p=thirdparty%2Fpaperless-ngx.git Sets the Git information before pushing the documentation build --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index afcf0b7457..9f1c78f498 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,6 +82,8 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/main' run: | echo "docs.paperless-ngx.com" > "${{ github.workspace }}/docs/CNAME" + git config --global user.name "${{ github.actor }}" + git config --global user.email "${{ github.actor }}@users.noreply.github.com" pipenv --python ${{ steps.setup-python.outputs.python-version }} run mkdocs gh-deploy --force --no-history - name: Upload artifact