Skip to content

Commit

Permalink
Separate builds
Browse files Browse the repository at this point in the history
1.2.13
  • Loading branch information
VitalyEmelyanov committed May 14, 2020
1 parent 0e86c36 commit d7c7c8b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 7 deletions.
29 changes: 24 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,28 @@ on:
- v1.*

jobs:
release:
runs-on: ${{ matrix.os }}
release_mac:
runs-on: macos-latest

strategy:
matrix:
os: [windows-latest, macos-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v1

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 12

- name: Install deps
run: npm install

- name: Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: npm run electron:release

release_win:
runs-on: windows-latest

steps:
- name: Check out Git repository
Expand All @@ -27,6 +43,9 @@ jobs:
- name: Install deps
run: npm install

- name: Install ffmpeg for x32 and x64
run: npm install -f @ffmpeg-installer/win32-ia32 @ffmpeg-installer/win32-x64

- name: Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rtmp-restreamer",
"version": "1.2.12",
"version": "1.2.13",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down

0 comments on commit d7c7c8b

Please sign in to comment.