From 44296e7e6e87a6eab39b8a4321396a0b556c4816 Mon Sep 17 00:00:00 2001 From: Bernie White Date: Sat, 13 Apr 2024 14:19:41 +1000 Subject: [PATCH] Fixes for docs pipeline (#2822) --- .github/workflows/docs.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 8e65ddab06..e177bcc64c 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -67,12 +67,11 @@ jobs: - name: Push content run: | cd site/ - git config advice.addIgnoredFile false git config user.name github-actions git config user.email '41898282+github-actions[bot]@users.noreply.github.com' - git add * + git add . git commit -m "deploy ${{ github.sha }}" - git push + git push --force deploy: name: Deploy pages