File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ jobs:
26
26
27
27
- name : Configure and Build
28
28
run : |
29
- if [ "${{ matrix.compiler }}" == "gcc" ]; then
29
+ if [[ "${{ matrix.compiler }}" == "gcc" ] ]; then
30
30
export CC=gcc
31
31
export CXX=g++
32
32
else
33
33
export CC=clang
34
34
export CXX=clang++
35
35
fi
36
36
37
- if [ "${{ matrix.build_type }}" == "debug" ]; then
37
+ if [[ "${{ matrix.build_type }}" == "debug" ] ]; then
38
38
./configure --shared --debug
39
39
else
40
40
./configure --shared
51
51
cd out/Release
52
52
fi
53
53
54
- zip node-shared-linux-x64-${{ matrix.compiler }}-${{ matrix.build_type }}.zip libnode.so.127
54
+ # rename the file libnode.so.127 to libnode.so
55
+ mv libnode.so.127 libnode.so
56
+
57
+ zip node-shared-linux-x64-${{ matrix.compiler }}-${{ matrix.build_type }}.zip libnode.so
55
58
56
59
- name : Publish to release assets
57
60
uses : softprops/action-gh-release@v2
You can’t perform that action at this time.
0 commit comments