Create buildnw.yml

This commit is contained in:
Lennon McLean 2021-08-15 10:26:47 -04:00 committed by GitHub
parent f1fb977e65
commit 77056b1f63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 0 deletions

30
.github/workflows/buildnw.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: BUild NW.js apps
on:
[push, workflow_dispatch]
jobs:
build:
name: BUild Windows app
runs-on: ubuntu-latest
steps:
- name: Get repository code
uses: actions/checkout@v2
- name: Download NW.js
run: wget https://dl.nwjs.io/v0.55.0/nwjs-v0.55.0-win-x64.zip
- name: Extract NW.js
run: unzip nwjs-v0.55.0-win-x64.zip
build:
name: Build Linux app
runs-on: ubuntu-latest
steps:
- name: Get repository code
uses: actions/checkout@v2
- name: Download NW.js
run: wget https://dl.nwjs.io/v0.55.0/nwjs-v0.55.0-linux-x64.tar.gz
- name: Extract NW.js
run: unzip nwjs-v0.55.0-linux-x64.tar.gz