File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -27,27 +27,26 @@ jobs:
2727 uname -a
2828 sudo apt update || true
2929 brew install go || true
30- sudo apt install -y g++-aarch64-linux-gnu || true
3130 - name : Build and update binaries
3231 shell : bash
3332 run : |
3433 git clone --recursive https://github.com/uNetworking/uWebSockets.js.git
3534 cd uWebSockets.js
3635 if [ "${{ matrix.os }}" == "windows-latest" ]; then
37- nmake || true
36+ nmake
3837 else
3938 make
4039 fi
41- cp dist/*.node . || true
42- cp dist/*.js . || true
43- git checkout master docs/index.d.ts && mv docs/index.d.ts . || true
44- git add *.node *.js index.d.ts || true
40+ cp dist/*.node .
41+ cp dist/*.js .
42+ git checkout master docs/index.d.ts && mv docs/index.d.ts .
4543 git fetch origin binaries:binaries
44+ git add *.node *.js index.d.ts
4645 git checkout binaries
4746 git status
4847 git config --global user.email "[email protected] " 4948 git config --global user.name "Alex Hultman"
50- git commit -a - m "[GitHub Actions] Updated ${{ matrix.os }} binaries" || true
49+ git commit -m "[GitHub Actions] Updated ${{ matrix.os }} binaries" || true
5150 git push "https://unetworkingab:${{ secrets.SECRET }}@github.com/uNetworking/uWebSockets.js" binaries
5251 git checkout master -- tests/smoke.js
5352 npm install ws
You can’t perform that action at this time.
0 commit comments