Update buildnw.yml

This commit is contained in:
Lennon McLean 2021-08-15 10:45:14 -04:00 committed by GitHub
parent e66ca63973
commit 722eca26aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,8 +11,8 @@ jobs:
- name: Get repository code - name: Get repository code
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Create build directory and cd to it - name: Create build directory
run: mkdir build && cd build run: mkdir build
- name: Download Windows NW.js - name: Download Windows NW.js
run: wget https://dl.nwjs.io/v0.55.0/nwjs-v0.55.0-win-x64.zip run: wget https://dl.nwjs.io/v0.55.0/nwjs-v0.55.0-win-x64.zip
@ -29,8 +29,8 @@ jobs:
- name: Delete archives - name: Delete archives
run: rm nwjs-v0.55.0-linux-x64.tar.gz nwjs-v0.55.0-win-x64.zip run: rm nwjs-v0.55.0-linux-x64.tar.gz nwjs-v0.55.0-win-x64.zip
- name: Rename NW.js directories - name: Rename and move NW.js directories
run: mv nwjs-v0.55.0-linux-x64 KitsuneOffline-linux && mv nwjs-v0.55.0-win-x64 KitsuneOffline-win run: mv nwjs-v0.55.0-linux-x64 build/KitsuneOffline-linux && mv nwjs-v0.55.0-win-x64 build/KitsuneOffline-win
- name: list files to make sure we are on the right track - name: list files to make sure we are on the right track
run: echo "Build directory:" && ls -A && echo "Repository:" && ls -A .. run: echo "Build directory:" && ls -A build && echo "Repository:" && ls -A