From 38fd7a806e785773882a1efa2a05c465da69d4f0 Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 21 Sep 2023 16:27:34 -0800 Subject: [PATCH] Build with npm This was always the original intention. We should not even have the yarn.lock in here at all, actually. --- .github/workflows/release.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3bd5f36b7aed..c13bdbde1976 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -150,10 +150,8 @@ jobs: - name: Decompress npm package run: tar -xzf package.tar.gz - # NOTE@jsjoeio - npm fails here - # so use yarn - name: Build standalone release - run: yarn release:standalone + run: npm run release:standalone - name: Replace node with cross-compile equivalent run: | @@ -161,7 +159,7 @@ jobs: tar -xf node-${NODE_VERSION}-linux-${NPM_CONFIG_ARCH}.tar.xz node-${NODE_VERSION}-linux-${NPM_CONFIG_ARCH}/bin/node --strip-components=2 mv ./node ./release-standalone/lib/node - # NOTE@jsjoeio - we do this so we can strip out the v + # NOTE@jsjoeio - we do this so we can strip cut the v # i.e. v4.9.1 -> 4.9.1 - name: Get and set VERSION run: |