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 2571578 commit 468c5b5Copy full SHA for 468c5b5
.github/workflows/dotnetcore.yml
@@ -56,12 +56,17 @@ jobs:
56
name: Package
57
run: |-
58
# Find the publish directories
59
- shopt -s globstar; paths=(); for i in **/publish/*.dll; do
+ shopt -s globstar
60
+ paths=()
61
+ for i in **/publish/*.dll; do
62
dir=${i%/*}
63
echo ${dir}
64
paths=(${paths[@]} ${dir});
65
done
66
eval uniquepaths=($(printf "%s\n" "${paths[@]}" | sort -u))
67
+ for i in "${uniquepaths[@]}"; do
68
+ echo $i
69
+ done
70
# For each publish dir, create a package
71
packages=()
72
for path in "${uniquepaths}"; do
0 commit comments