Workflow fix

This commit is contained in:
Djuri Baars 2023-11-19 18:31:06 +01:00
parent ca0cf827b2
commit 3eaf897dbb

View File

@ -18,7 +18,7 @@ jobs:
id: changed-files id: changed-files
uses: tj-actions/changed-files@v40.1.1 uses: tj-actions/changed-files@v40.1.1
with: with:
files_ignore: "doc/**,README.md,Dockerfile,.*,.github/**" files_ignore: "doc/**,README.md,Dockerfile,.*"
files_ignore_separator: ',' files_ignore_separator: ','
- name: Print changed files count - name: Print changed files count
run: > run: >
@ -28,7 +28,7 @@ jobs:
build: build:
needs: check-changes needs: check-changes
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: ${{ needs.check-changes.outputs >= 1 }} if: ${{ needs.check-changes.outputs.all_changed_and_modified_files_count >= 1 }}
permissions: permissions:
contents: write contents: write