Update buildnw.yml

This commit is contained in:
Lennon McLean 2021-08-16 15:41:32 -04:00 committed by GitHub
parent a5562b62be
commit b5133fa883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 1 deletions

View File

@ -4,7 +4,28 @@ on:
[push, workflow_dispatch]
jobs:
build:
buildnw:
name: Build NW.js apps
runs-on: ubuntu-latest
steps:
- name: Get repository code
uses: actions/checkout@v2
with:
ref: ios
- name: Install Cordova
run: npm install cordova -g
- name: Add iOS platform
run: cordova platform add ios
- name: Build iOS app
run: cordova build ios
- name: list files
run: echo "main directory:" && ls && echo "ios build folder:" && ls platforms/ios/build && echo "emulator:" && ls platforms/ios/build/emulator
buildnw:
name: Build NW.js apps
runs-on: ubuntu-latest
steps: