Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 38fd7a8

Browse files
committedSep 22, 2023
Build with npm
This was always the original intention. We should not even have the yarn.lock in here at all, actually.
1 parent 4e77874 commit 38fd7a8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎.github/workflows/release.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,18 +150,16 @@ jobs:
150150
- name: Decompress npm package
151151
run: tar -xzf package.tar.gz
152152

153-
# NOTE@jsjoeio - npm fails here
154-
# so use yarn
155153
- name: Build standalone release
156-
run: yarn release:standalone
154+
run: npm run release:standalone
157155

158156
- name: Replace node with cross-compile equivalent
159157
run: |
160158
wget https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-${NPM_CONFIG_ARCH}.tar.xz
161159
tar -xf node-${NODE_VERSION}-linux-${NPM_CONFIG_ARCH}.tar.xz node-${NODE_VERSION}-linux-${NPM_CONFIG_ARCH}/bin/node --strip-components=2
162160
mv ./node ./release-standalone/lib/node
163161
164-
# NOTE@jsjoeio - we do this so we can strip out the v
162+
# NOTE@jsjoeio - we do this so we can strip cut the v
165163
# i.e. v4.9.1 -> 4.9.1
166164
- name: Get and set VERSION
167165
run: |

0 commit comments

Comments
 (0)
Please sign in to comment.