We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ec67d9 commit 4cf5d6bCopy full SHA for 4cf5d6b
1 file changed
.github/workflows/publish.yml
@@ -30,6 +30,13 @@ jobs:
30
echo "[pub] string is missing in commit message, skipping ..."
31
exit 0
32
33
+ - name: Clone another repo into folder xxx
34
+ env:
35
+ TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
+ run: |
37
+ mkdir -p _ftsbuilder
38
+ git clone https://x-access-token:${TOKEN}@github.com/HelpViewer/fulltextSearchDBBuilder.git _ftsbuilder
39
+
40
- name: Publish
41
id: pub
42
if: ${{ github.event_name == 'workflow_dispatch' || contains(github.event.head_commit.message, '[pub]') }}
@@ -63,6 +70,9 @@ jobs:
63
70
cp -r -T -v "$SRC_DIR"/. "$dir"/
64
71
cd $dir
65
72
echo "_lang|$dir" >> _config.txt
73
+ echo "::endgroup::"
74
+ [ -f "./fts-keywords.lst" ] && bash ../_ftsbuilder/indexBuild.sh "."
75
+ echo "::group::Language: $dir - zipping directory"
66
76
echo "Zipping ..."
67
77
zip -r -9 ../_output/Help-$dir.zip .
68
78
cd ..
0 commit comments