From 0166f07f2951c6539b44189fd75568a2e9f5392b Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 19 Dec 2024 14:01:38 +0100 Subject: [PATCH] fix(ci): take new compiled files into account for reuse check Reuse respects the gitignore file. Add newly compiled files to js and css folders explicitely so they will be taken into account. Signed-off-by: Max --- .github/workflows/reuse.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index b7a3dd95ea6..686d827b1a8 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -40,5 +40,9 @@ jobs: npm ci npm run build --if-present + - name: Add changed files to git so they are checked + run: | + git add --force js/ css/ + - name: REUSE Compliance Check uses: fsfe/reuse-action@3ae3c6bdf1257ab19397fab11fd3312144692083 # v4.0.0