diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8ac0b5c..063532e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,10 +27,12 @@ jobs: id: filter with: filters: | + src_static: + - 'src/static/**' src_templates: - 'src/templates/**' - name: Increment Version (for security - and CSP asset alignment - every change to the template files is a breaking change) - if: steps.filter.outputs.src_templates == 'true' + if: steps.filter.outputs.src_static == 'true' || steps.filter.outputs.src_templates == 'true' run: npm version major - name: Install and Build using incremented version run: npm ci