From 938cd44d7e3ce733f1260bc704a75d49b0a556b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Dzi=C4=99giel?= Date: Thu, 9 May 2024 23:43:30 +0200 Subject: [PATCH] workflows: doc: Continue on commit/push errors --- .github/workflows/documentation.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index f47f9a36..001e9007 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -34,6 +34,7 @@ jobs: meson compile - name: Commit files if: ${{ success() && github.ref == 'refs/heads/master' }} + continue-on-error: true run: | git config --global --add safe.directory $GITHUB_WORKSPACE git checkout gh-pages @@ -50,6 +51,7 @@ jobs: - name: Push changes uses: ad-m/github-push-action@master if: ${{ success() && github.ref == 'refs/heads/master' }} + continue-on-error: true with: github_token: ${{ secrets.GITHUB_TOKEN }} branch: gh-pages