We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be47dec commit d353374Copy full SHA for d353374
.github/workflows/build-test.yml
@@ -25,7 +25,7 @@ jobs:
25
uses: actions/checkout@v3
26
27
- name: Calculate file differences
28
- id: changed-files
+ id: diff
29
uses: tj-actions/changed-files@v35
30
with:
31
json: true
@@ -39,9 +39,9 @@ jobs:
39
script: |
40
const script = require(`${process.env.GITHUB_WORKSPACE}/genMatrix.js`)
41
return script(
42
- ${{ steps.changed-files.outputs.added_files }},
43
- ${{ steps.changed-files.outputs.modified_files }},
44
- ${{ steps.changed-files.outputs.renamed_files }},
+ ${{ steps.diff.outputs.added_files }},
+ ${{ steps.diff.outputs.modified_files }},
+ ${{ steps.diff.outputs.renamed_files }},
45
);
46
47
outputs:
0 commit comments