Skip to content

Commit 4c6fa33

Browse files
committed
tt
1 parent 53066a5 commit 4c6fa33

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/ci-build-release-napi.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,16 @@ jobs:
4141
- name: Build CPP dependencies lib
4242
if: steps.cache-dependencies.outputs.cache-hit != 'true'
4343
run: |
44-
export ARCH=${{ matrix.arch }}
44+
if [ "${{ matrix.arch }}" = "x64" ]; then
45+
export ARCH=x86_64
46+
else
47+
export ARCH=${{ matrix.arch }}
48+
fi
4549
pkg/mac/build-cpp-deps-lib.sh
4650
4751
- name: Build CPP lib
4852
if: steps.cache-pulsar.outputs.cache-hit != 'true'
4953
run: |
50-
if [ "${{ matrix.arch }}" = "x64" ]; then
51-
export ARCH=x86_64
52-
else
53-
export ARCH=${{ matrix.arch }}
54-
fi
5554
pkg/mac/build-cpp-lib.sh
5655
5756
- name: Build Node binaries lib

0 commit comments

Comments
 (0)