Skip to content

Commit d354b6f

Browse files
committed
Build with npm
This was always the original intention. We should not even have the yarn.lock in here at all, actually.
1 parent abbd6f0 commit d354b6f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/release.yaml

+2-4
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)