Fixes gh-16: updates renderer width/height on loading video sources. #18
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-and-package | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Builld Electron app | |
run: | | |
npm install | |
package: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Package Electron app | |
run: | | |
npm install | |
npm run create-release-artifacts |