From 07ca728b5b36425061e75e5a9f3f445ecd2a7d57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Thu, 9 May 2024 23:50:19 +0200 Subject: [PATCH] workflows: doc: Do not error on nothing to commit Not always there are changes to the documentation --- .github/workflows/documentation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 001e9007..6caa8cea 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -47,7 +47,7 @@ jobs: git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" git add doc/clapper/* doc/clapper-gtk/* - git commit -m "doc: Update" + git commit -m "doc: Update" || true - name: Push changes uses: ad-m/github-push-action@master if: ${{ success() && github.ref == 'refs/heads/master' }}