We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b875d62 commit 9a981a5Copy full SHA for 9a981a5
.github/workflows/test-check_easystacks.yml
@@ -62,9 +62,10 @@ jobs:
62
63
# check for missing installations if a file in the easystacks directory is changed
64
echo "check for missing installation in changed easystack files"
65
+ echo ${{ steps.changes.outputs }}
66
echo ${{ steps.changes.outputs.changed_files }}
67
- for easystack_file in (${{ steps.changes.outputs.changed_files }}); do
68
+ for easystack_file in ${{ steps.changes.outputs.changed_files }}; do
69
echo "check missing installatios for ${easystack_file}..."
70
./check_missing_installations.sh ${easystack_file}
71
ec=$?
0 commit comments