Skip to content

Commit d8a7f66

Browse files
restore
1 parent bf8245f commit d8a7f66

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,17 @@ jobs:
2424
git clone --recursive https://github.com/uNetworking/uWebSockets.js.git
2525
cd uWebSockets.js
2626
${{ matrix.os == 'windows-latest' && 'nmake' || 'make' }}
27-
cp dist/*.node .
28-
cp dist/*.js .
29-
ls
30-
npm install ws
31-
node tests/smoke.js
32-
rm *.node
33-
rm *.js
3427
git fetch origin binaries:binaries
3528
git checkout binaries
3629
cp dist/*.node .
3730
cp dist/*.js .
38-
git add *.node *.js
3931
git rev-parse master > source_commit
4032
${{ matrix.os != 'windows-latest' && 'git checkout master docs/index.d.ts && mv docs/index.d.ts .' || '' }}
4133
git status
4234
git config --global user.email "[email protected]"
4335
git config --global user.name "Alex Hultman"
44-
git commit -m "[GitHub Actions] Updated ${{ matrix.os }} binaries" || true
36+
git commit -a -m "[GitHub Actions] Updated ${{ matrix.os }} binaries" || true
4537
git push "https://unetworkingab:${{ secrets.SECRET }}@github.com/uNetworking/uWebSockets.js" binaries
38+
git checkout master -- tests/smoke.js
39+
npm install ws
40+
node tests/smoke.js

0 commit comments

Comments
 (0)