Skip to content

Commit 06ee034

Browse files
authored
Update publish.yml : bugfix language dirs due to glob usage problems
1 parent 4575c3f commit 06ee034

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ jobs:
5858
mkdir -p $SRC_DIR
5959
echo "::endgroup::"
6060
61-
langdirs=$(printf "%s;" */)
62-
langdirs=${dirs%;}
61+
langdirs=$(find . -maxdepth 1 -type d ! -name '.' -printf '%P\n' | paste -sd';')
6362
6463
for dir in */ ; do
6564
dir=${dir%/}

0 commit comments

Comments
 (0)