edit workflow
[pynotes-id.git] / .github / workflows / main.yml
blob0dcef75e143ebcd21406810d9f676480cf218222
2 name: Package Application with Pyinstaller
4 on:
5   push:
6     branches: [ master ]
7   pull_request:
8     branches: [ master ]
10 jobs:
11   build:
13     runs-on: ubuntu-latest
15     steps:
16     - uses: actions/checkout@v2
18     - name: Package Application
19       uses: JackMcKew/pyinstaller-action-windows@main
20       with:
21         path: src
23     - uses: actions/upload-artifact@v2
24       with:
25         name: name-of-artifact
26         path: src/dist/windows
27     - name: Package Application
28       uses: JackMcKew/pyinstaller-action-linux@main
29       with:
30         path: src
32     - uses: actions/upload-artifact@v2
33       with:
34         name: name-of-artifact
35         path: src/dist/linux