From c11c3f32e203d7ab47f0c15f3461233f4c4017f2 Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Tue, 23 Jul 2024 19:18:06 +0300 Subject: [PATCH] workflows: fix `update-files.yaml` --- .github/workflows/update-files.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/update-files.yaml b/.github/workflows/update-files.yaml index c735db04..705cfa4f 100644 --- a/.github/workflows/update-files.yaml +++ b/.github/workflows/update-files.yaml @@ -32,12 +32,14 @@ jobs: git config --global user.email "${{ github.actor }}@users.noreply.github.com" - name: Update schema.json + continue-on-error: true run: | hatch run docs:update-schema git add schema.json git commit -m "docs: update schema.json" - name: Update `examples` folder + continue-on-error: true run: | hatch run docs:update-examples git add examples/* @@ -45,11 +47,13 @@ jobs: git commit -m "docs: update examples" - name: Update entry figures + continue-on-error: true run: | hatch run docs:update-entry-figures git add docs/assets/images/**/*.png git commit -m "docs: update entry figures" - name: Push changes + continue-on-error: true run: | git push origin HEAD:main