Skip to content

Commit f6c0b7f

Browse files
committed
Add command to publish to win32-arm64
1 parent b0f1f72 commit f6c0b7f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/prebuild.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Test and Prebuild
22
on: [push]
33
jobs:
44
build-test-macos:
5-
#if: startsWith(github.ref, 'refs/tags/')
5+
if: startsWith(github.ref, 'refs/tags/')
66
env:
77
LMDB_DATA_V1: ${{ contains(github.ref, '-v1') }}
88
runs-on: macos-13
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
files: prebuild-darwin.tar
3737
build-test-win32:
38-
#if: startsWith(github.ref, 'refs/tags/')
38+
if: startsWith(github.ref, 'refs/tags/')
3939
env:
4040
LMDB_DATA_V1: ${{ contains(github.ref, '-v1') }}
4141
runs-on: windows-latest
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
files: prebuild-win32.tar
6060
build-test-win32-arm64:
61-
#if: startsWith(github.ref, 'refs/tags/')
61+
if: startsWith(github.ref, 'refs/tags/')
6262
env:
6363
LMDB_DATA_V1: ${{ contains(github.ref, '-v1') }}
6464
runs-on: windows-11-arm

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"prebuild-win32": "set ENABLE_V8_FUNCTIONS=false&& prebuildify-platform-packages --debug --napi --platform-packages --target 20.18.0",
6969
"prebuild-libc-arm7": "ENABLE_V8_FUNCTIONS=false prebuildify-platform-packages --debug --napi --platform-packages --tag-libc --target 22.11.0",
7070
"prebuildify": "prebuildify-platform-packages --debug --napi --target 22.11.0",
71-
"full-publish": "cd prebuilds/win32-x64 && npm publish --access public && cd ../darwin-x64 && npm publish --access public && cd ../darwin-arm64 && npm publish --access public && cd ../linux-x64 && npm publish --access public && cd ../linux-arm64 && npm publish --access public && cd ../linux-arm && npm publish --access public && cd ../.. && npm publish && node util/remove-optional-deps.cjs",
71+
"full-publish": "cd prebuilds/win32-x64 && npm publish --access public && cd ../win32-arm64 && npm publish --access public && cd ../darwin-x64 && npm publish --access public && cd ../darwin-arm64 && npm publish --access public && cd ../linux-x64 && npm publish --access public && cd ../linux-arm64 && npm publish --access public && cd ../linux-arm && npm publish --access public && cd ../.. && npm publish && node util/remove-optional-deps.cjs",
7272
"recompile": "node-gyp clean && node-gyp configure && node-gyp build",
7373
"recompile-v1": "node-gyp clean && set LMDB_DATA_V1=true&& node-gyp configure && set LMDB_DATA_V1=true&& node-gyp build",
7474
"test": "mocha test/**.test.js --expose-gc --recursive",

0 commit comments

Comments
 (0)