Update buildnw.yml

This commit is contained in:
Lennon McLean 2021-08-15 10:39:35 -04:00 committed by GitHub
parent 316529404b
commit d5f34786da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 2 deletions

View File

@ -11,6 +11,9 @@ jobs:
- name: Get repository code
uses: actions/checkout@v2
- name: Create build directory and cd to it
run: mkdir build && cd build
- name: Download Windows NW.js
run: wget https://dl.nwjs.io/v0.55.0/nwjs-v0.55.0-win-x64.zip
@ -23,5 +26,11 @@ jobs:
- name: Extract Linux NW.js
run: tar -xvf nwjs-v0.55.0-linux-x64.tar.gz
- name: list files
run: ls
- name: Delete archives
run: rm nwjs-v0.55.0-linux-x64.tar.gz nwjs-v0.55.0-win-x64.zip
- name: Rename NW.js directories
run: mv nwjs-v0.55.0-linux-x64 KitsuneOffline-linux && mv nwjs-v0.55.0-win-x64 KitsuneOffline-win
- name: list files to make sure we are on the right track
run: ls && ls ..