File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ jobs:
119
119
CC : ${{ format('{0}-gcc', matrix.prefix) }}
120
120
CXX : ${{ format('{0}-g++', matrix.prefix) }}
121
121
LINK : ${{ format('{0}-g++', matrix.prefix) }}
122
- NPM_CONFIG_ARCH : ${{ matrix.arch }}
122
+ npm_config_arch : ${{ matrix.arch }}
123
123
NODE_VERSION : v18.15.0
124
124
125
125
steps :
@@ -155,8 +155,8 @@ jobs:
155
155
156
156
- name : Replace node with cross-compile equivalent
157
157
run : |
158
- wget https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-${NPM_CONFIG_ARCH }.tar.xz
159
- tar -xf node-${NODE_VERSION}-linux-${NPM_CONFIG_ARCH }.tar.xz node-${NODE_VERSION}-linux-${NPM_CONFIG_ARCH }/bin/node --strip-components=2
158
+ wget https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-${npm_config_arch }.tar.xz
159
+ tar -xf node-${NODE_VERSION}-linux-${npm_config_arch }.tar.xz node-${NODE_VERSION}-linux-${npm_config_arch }/bin/node --strip-components=2
160
160
mv ./node ./release-standalone/lib/node
161
161
162
162
# NOTE@jsjoeio - we do this so we can strip out the v
@@ -169,7 +169,7 @@ jobs:
169
169
- name : Build packages with nfpm
170
170
env :
171
171
VERSION : ${{ env.VERSION }}
172
- run : yarn package ${NPM_CONFIG_ARCH }
172
+ run : yarn package ${npm_config_arch }
173
173
174
174
- uses : softprops/action-gh-release@v1
175
175
with :
You can’t perform that action at this time.
0 commit comments