From 0384abd654fcd5fc4df6f0b4c3dee6c12482f060 Mon Sep 17 00:00:00 2001 From: sayakpaul Date: Fri, 1 Mar 2024 06:56:53 +0530 Subject: [PATCH] fix: path --- .github/workflows/build_documentation.yml | 4 ++-- .github/workflows/build_pr_documentation.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_documentation.yml b/.github/workflows/build_documentation.yml index 17d65b07e96e..d9054928ed8d 100644 --- a/.github/workflows/build_documentation.yml +++ b/.github/workflows/build_documentation.yml @@ -9,8 +9,8 @@ on: - v*-patch paths: - "src/diffusers/**.py" - - "examples/" - - "docs/" + - "examples/**" + - "docs/**" jobs: build: diff --git a/.github/workflows/build_pr_documentation.yml b/.github/workflows/build_pr_documentation.yml index 267381fd64e7..8e19d8fafbe3 100644 --- a/.github/workflows/build_pr_documentation.yml +++ b/.github/workflows/build_pr_documentation.yml @@ -4,8 +4,8 @@ on: pull_request: paths: - "src/diffusers/**.py" - - "examples/" - - "docs/" + - "examples/**" + - "docs/**" concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}