Test action

This commit is contained in:
Marc Riera Irigoyen 2022-10-23 22:20:55 +02:00
parent b9d8ffde84
commit d5d3e9b8b6
2 changed files with 24 additions and 0 deletions

23
.github/workflows/main.yaml vendored Normal file
View file

@ -0,0 +1,23 @@
name: Package application with Pyinstaller
on:
push:
branches: [ qt5 ]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Package Application
uses: JackMcKew/pyinstaller-action-linux@main
with:
path: src
- uses: actions/upload-artifact@v2
with:
name: name-of-artifact
path: src/dist/linux

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
__pycache__/ __pycache__/
*.db *.db
.vscode/