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 0db091e commit 992ed40Copy full SHA for 992ed40
.github/workflows/publish.yml
@@ -57,6 +57,8 @@ jobs:
57
SRC_DIR="_invariant"
58
mkdir -p $SRC_DIR
59
echo "::endgroup::"
60
+
61
+ langdirs=$(find . -maxdepth 1 -type d ! -name '.' ! -name '.*' ! -name '_*' -printf '%P\n' | paste -sd';')
62
63
for dir in */ ; do
64
dir=${dir%/}
@@ -70,8 +72,9 @@ jobs:
70
72
cp -r -T -v "$SRC_DIR"/. "$dir"/
71
73
cd $dir
74
echo "_lang|$dir" >> _config.txt
75
+ echo "_langs|$langdirs" >> _config.txt
76
- [ -f "./fts-keywords.lst" ] && bash ../_ftsbuilder/indexBuild.sh "."
77
+ [ -f "./fts-keywords.lst" ] && bash ../_ftsbuilder/indexBuild.sh "." "$dir"
78
echo "::group::Language: $dir - zipping directory"
79
echo "Zipping ..."
80
zip -r -9 ../_output/Help-$dir.zip .
0 commit comments