Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a typo in the references between job steps. I renamed the references, but missed this one. actionlint would have caught this. ``` .github/workflows/test_changes.yml:24:29: property "changed-installers" is not defined in object type {files: {conclusion: string; outcome: string; outputs: {string => string}}} [expression] | 24 | CHANGED_FILES: ${{steps.changed-installers.outputs.all_changed_files}} | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ``` Instead I detected it with debug logging in [changes workflow run 37 attempt 2](https://github.com/iainelder/dotfiles/actions/runs/9780228648/job/27001451471). Get changed installer files: ``` ``` Get changed installer names: ``` ... ... ```
- Loading branch information