Skip to content

Commit

Permalink
Create pyinstaller action
Browse files Browse the repository at this point in the history
  • Loading branch information
ZingyTomato committed May 28, 2022
1 parent 22bd1f9 commit 812973f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

name: Build Binary

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Build Application
uses: JackMcKew/pyinstaller-action-linux@main
with:
path: harmony

- uses: actions/upload-artifact@v2
with:
name: harmony
path: src/dist/linux

0 comments on commit 812973f

Please sign in to comment.