From a52b53f788490bd6474bb771868303edfe081db2 Mon Sep 17 00:00:00 2001 From: Yves Lavoie Date: Mon, 6 Nov 2023 09:37:01 -0500 Subject: [PATCH] Revise glob pattern to exclude html from UI/js or UI/.node_modules --- .github/workflows/main.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 40496c1af0..41cfa806a4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -81,7 +81,11 @@ jobs: uses: actions/cache@v3 with: path: UI/js - key: dojo-${{ hashFiles('UI/js-src/**', 'UI/src/**', 'UI/css/**','UI/**/*.html','doc/sources/**') }} + key: dojo-${{ hashFiles('UI/js-src/**', + 'UI/src/**', + 'UI/css/**', + 'UI/!(js|.node_modules)/**/*.html', + 'doc/sources/**') }} - name: Build Dojo run: |