Update buildnw.yml

This commit is contained in:
Lennon McLean 2021-08-15 12:02:55 -04:00 committed by GitHub
parent 4e3077ed77
commit 1bab5c50c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 6 deletions

View File

@ -14,16 +14,28 @@ jobs:
- name: Create build directory
run: mkdir build
- name: Download Windows NW.js
- name: Download Windows x64 NW.js
run: wget https://dl.nwjs.io/v0.55.0/nwjs-v0.55.0-win-x64.zip
- name: Extract Windows NW.js
run: unzip nwjs-v0.55.0-win-x64.zip
- name: Download Linux NW.js
- name: Download Windows x86 NW.js
run: wget https://dl.nwjs.io/v0.55.0/nwjs-v0.55.0-win-x86.zip
- name: Download Linux x64 NW.js
run: wget https://dl.nwjs.io/v0.55.0/nwjs-v0.55.0-linux-x64.tar.gz
- name: Extract Linux NW.js
- name: Download Linux x86 NW.js
run: wget https://dl.nwjs.io/v0.55.0/nwjs-v0.55.0-linux-x86.tar.gz
- name: Extract Windows x64 NW.js
run: unzip nwjs-v0.55.0-win-x64.zip
- name: Extract Windows x86 NW.js
run: unzip nwjs-v0.55.0-win-x86.zip
- name: Extract Linux x64 NW.js
run: tar -xvf nwjs-v0.55.0-linux-x64.tar.gz
- name: Extract Linux x64 NW.js
run: tar -xvf nwjs-v0.55.0-linux-x64.tar.gz
- name: Delete archives