We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 972a083 commit f856f0fCopy full SHA for f856f0f
.github/workflows/build-openssl-packages.yml
@@ -41,6 +41,7 @@ jobs:
41
42
- name: Push OpenSSL package to S3
43
env:
44
+ npm_config_arch: ${{ matrix.arch }}
45
node_pre_gyp_bucket: ${{ secrets.node_pre_gyp_bucket }}
46
AWS_ACCESS_KEY_ID: ${{ secrets.node_pre_gyp_accessKeyId }}
47
AWS_SECRET_ACCESS_KEY: ${{ secrets.node_pre_gyp_secretAccessKey }}
utils/acquireOpenSSL.mjs
@@ -430,7 +430,7 @@ const downloadOpenSSLIfNecessary = async ({
430
console.log("Download finished.");
431
}
432
433
-const getOpenSSLPackageName = () => {
+export const getOpenSSLPackageName = () => {
434
return `openssl-${OPENSSL_VERSION}-${process.platform}-${targetArch}.tar.gz`;
435
436
0 commit comments