We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53066a5 commit 4c6fa33Copy full SHA for 4c6fa33
.github/workflows/ci-build-release-napi.yml
@@ -41,17 +41,16 @@ jobs:
41
- name: Build CPP dependencies lib
42
if: steps.cache-dependencies.outputs.cache-hit != 'true'
43
run: |
44
- export ARCH=${{ matrix.arch }}
+ if [ "${{ matrix.arch }}" = "x64" ]; then
45
+ export ARCH=x86_64
46
+ else
47
+ export ARCH=${{ matrix.arch }}
48
+ fi
49
pkg/mac/build-cpp-deps-lib.sh
50
51
- name: Build CPP lib
52
if: steps.cache-pulsar.outputs.cache-hit != 'true'
53
- if [ "${{ matrix.arch }}" = "x64" ]; then
- export ARCH=x86_64
- else
54
- fi
55
pkg/mac/build-cpp-lib.sh
56
57
- name: Build Node binaries lib
0 commit comments