Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
Trekky12 committed Dec 12, 2020
2 parents 5ec9a2a + 1ae66f2 commit 7b8dfae
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build GUI for Linux with Pyinstaller

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Package Application
uses: JackMcKew/pyinstaller-action-linux@main
with:
path: .

- uses: actions/upload-artifact@v2
with:
name: kbvs
path: dist/linux
25 changes: 25 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build GUI for Windows with Pyinstaller

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Package Application
uses: JackMcKew/pyinstaller-action-windows@main
with:
path: .

- uses: actions/upload-artifact@v2
with:
name: kbvs
path: dist/windows

0 comments on commit 7b8dfae

Please sign in to comment.