Sets the Git information before pushing the documentation build

This commit is contained in:
Trenton Holmes 2023-12-06 19:20:08 -08:00
parent c312149b35
commit d658150d42

View File

@ -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