From ef9761a7b6290f8ff0968dbb63097d80bf45a809 Mon Sep 17 00:00:00 2001 From: Sped0n Date: Sat, 4 Nov 2023 17:18:09 +0800 Subject: [PATCH] chore(artifacts.yml): update the syntax for specifying changed files in the 'changed-files-specific' step to improve readability and maintainability --- .github/workflows/artifacts.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 27466e3..9e439d2 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -18,9 +18,9 @@ jobs: id: changed-files-specific uses: tj-actions/changed-files@v40 with: - files: - - package.json - - assets/** + files: | + package.json + assets/** - name: Run step if any file(s) in the scope change if: steps.changed-files-specific.outputs.any_changed == 'true'