From 721246171d0b5862a349bf85c2a4f28ea35235c0 Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Tue, 23 Jul 2024 19:15:47 +0300 Subject: [PATCH] workflows: fix update-files.yaml --- .github/workflows/update-files.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-files.yaml b/.github/workflows/update-files.yaml index 48b1f21f..c735db04 100644 --- a/.github/workflows/update-files.yaml +++ b/.github/workflows/update-files.yaml @@ -41,12 +41,13 @@ jobs: run: | hatch run docs:update-examples git add examples/* + git add docs/assets/images/*.png git commit -m "docs: update examples" - name: Update entry figures run: | hatch run docs:update-entry-figures - git add docs/assets/**/*.png + git add docs/assets/images/**/*.png git commit -m "docs: update entry figures" - name: Push changes