File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -82,14 +82,15 @@ jobs:
82
82
run : |
83
83
dirs_length="${{ steps.load-config.outputs.dirs_length }}"
84
84
dirs_json="${{ steps.load-config.outputs.dirs_json }}"
85
- echo "Found $dirs_length directories in config"
85
+ echo "Found ${{ steps.load-config.outputs. dirs_length }} directories in ${{ steps.load- config.outputs.dirs_json }} "
86
86
for i in $(seq 0 $(($dirs_length - 1))); do
87
87
dir=$(echo "$dirs_json" | jq -r ".[$i].directory")
88
88
if [ ! -d "$dir" ]; then
89
89
echo "Directory not found: $dir"
90
90
continue
91
91
fi
92
92
echo "Processing directory: $dir"
93
+ echo "::notice::Processing directory: $dir"
93
94
cd "$dir"
94
95
pkgs_length=$(echo "$dirs_json" | jq ".[$i].packages | length")
95
96
echo "Found $pkgs_length packages in $dir"
You can’t perform that action at this time.
0 commit comments