Skip to content

Commit 468c5b5

Browse files
authored
Update dotnetcore.yml
1 parent 2571578 commit 468c5b5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,17 @@ jobs:
5656
name: Package
5757
run: |-
5858
# Find the publish directories
59-
shopt -s globstar; paths=(); for i in **/publish/*.dll; do
59+
shopt -s globstar
60+
paths=()
61+
for i in **/publish/*.dll; do
6062
dir=${i%/*}
6163
echo ${dir}
6264
paths=(${paths[@]} ${dir});
6365
done
6466
eval uniquepaths=($(printf "%s\n" "${paths[@]}" | sort -u))
67+
for i in "${uniquepaths[@]}"; do
68+
echo $i
69+
done
6570
# For each publish dir, create a package
6671
packages=()
6772
for path in "${uniquepaths}"; do

0 commit comments

Comments
 (0)