We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 983226b commit 1dc75ebCopy full SHA for 1dc75eb
.github/workflows/test-windows.yaml
@@ -101,6 +101,14 @@ jobs:
101
cp -r $datadir zip/data
102
cp $executable zip/
103
104
+ # include text-icu DLLs
105
+ $mingw64bin = (stack path --extra-library-dirs).split(", ") -match "\\bin"
106
+ ls $mingw64bin
107
+ cp (ls $mingw64bin *libicudt*) zip/
108
+ cp (ls $mingw64bin *libicuin*) zip/
109
+ cp (ls $mingw64bin *libicuuc*) zip/
110
+ ls zip
111
+
112
# compress
113
cd zip
114
Compress-Archive * als-windows.zip
package.yaml
@@ -1,5 +1,5 @@
1
name: agda-language-server
2
-version: 0.1.0.3
+version: 0.1.1
3
github: "banacorn/agda-language-server"
4
license: MIT
5
author: "Ting-Gian LUA"
0 commit comments