From 85cd284fddd9d4247ab2cd82eb2da5f5d68c8d32 Mon Sep 17 00:00:00 2001 From: Huong Nguyen Date: Tue, 1 Oct 2024 14:12:37 +0100 Subject: [PATCH] include kedro_sphinx_theme/ Signed-off-by: Huong Nguyen --- .github/workflows/smoke-test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/smoke-test.yml b/.github/workflows/smoke-test.yml index 22d12f9..d9b4019 100644 --- a/.github/workflows/smoke-test.yml +++ b/.github/workflows/smoke-test.yml @@ -29,13 +29,13 @@ jobs: - name: Check /assets/ folder run: | - if [ ! "$(ls -A wheel_contents/assets/*.css)" ]; then echo "CSS files missing in /assets/"; exit 1; fi - if [ ! "$(ls -A wheel_contents/assets/*.js)" ]; then echo "JS files missing in /assets/"; exit 1; fi + if [ ! "$(ls -A wheel_contents/kedro_sphinx_theme/assets/*.css)" ]; then echo "CSS files missing in /assets/"; exit 1; fi + if [ ! "$(ls -A wheel_contents/kedro_sphinx_theme/assets/*.js)" ]; then echo "JS files missing in /assets/"; exit 1; fi - name: Check /theme/kedro-sphinx-theme/ folder run: | - if [ ! "$(ls -A wheel_contents/theme/kedro-sphinx-theme/*.html)" ]; then echo "HTML files missing in /theme/kedro-sphinx-theme/"; exit 1; fi + if [ ! "$(ls -A wheel_contents/kedro_sphinx_theme/theme/kedro-sphinx-theme/*.html)" ]; then echo "HTML files missing in /theme/kedro-sphinx-theme/"; exit 1; fi - name: Check theme.conf file run: | - if [ ! -f "wheel_contents/theme/kedro-sphinx-theme/theme.conf" ]; then echo "theme.conf file missing in /theme/kedro-sphinx-theme/"; exit 1; fi + if [ ! -f "wheel_contents/kedro_sphinx_theme/theme/kedro-sphinx-theme/theme.conf" ]; then echo "theme.conf file missing in /theme/kedro-sphinx-theme/"; exit 1; fi