mirror of
https://github.com/marcriera/ddgo-converter.git
synced 2025-04-19 18:39:29 +02:00
Test action
This commit is contained in:
parent
b9d8ffde84
commit
d5d3e9b8b6
2 changed files with 24 additions and 0 deletions
23
.github/workflows/main.yaml
vendored
Normal file
23
.github/workflows/main.yaml
vendored
Normal 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
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.db
|
*.db
|
||||||
|
.vscode/
|
||||||
|
|
Loading…
Add table
Reference in a new issue