From 7c04f0a29c38903ebcb535db5619d9f40387aacb Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Sun, 7 Jul 2024 17:48:23 -0500 Subject: [PATCH] chore: update workflow to continue on error --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cb5befd..bc49390 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -110,9 +110,11 @@ jobs: git config --local user.name "Stevan Freeborn" git add . git commit -m "docs: documentation for v${{ steps.get-version.outputs.version }} [skip ci]" + continue-on-error: true - name: Push documentation uses: ad-m/github-push-action@master with: github_token: ${{ secrets.ACTIONS_PAT }} branch: ${{ github.ref }} - tags: true \ No newline at end of file + tags: true + continue-on-error: true \ No newline at end of file