File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
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
45
45
- name : Package assets
46
46
if : startsWith(github.ref, 'refs/tags/')
47
47
run : |
48
- if [ "${{ matrix.build_type }}" == "debug" ]; then
48
+ if [ "${{ matrix.build_type }}" = "debug" ]; then
49
49
cd out/Debug
50
50
else
51
51
cd out/Release
61
61
if : startsWith(github.ref, 'refs/tags/')
62
62
with :
63
63
files : |
64
- if [ "${{ matrix.build_type }}" == "debug" ]; then
64
+ if [ "${{ matrix.build_type }}" = "debug" ]; then
65
65
out/Debug/node-shared-linux-x64-${{ matrix.compiler }}-${{ matrix.build_type }}.zip
66
66
else
67
67
out/Release/node-shared-linux-x64-${{ matrix.compiler }}-${{ matrix.build_type }}.zip
You can’t perform that action at this time.
0 commit comments