We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fe3902 commit 2293c37Copy full SHA for 2293c37
.github/workflows/main.yml
@@ -39,9 +39,12 @@ jobs:
39
python-version: 3.11.7
40
cache: "pip"
41
- run: pip install -r requirements.txt
42
- - name: "pack"
+ - name: "pack(Windows)"
43
if: runner.os == 'Windows'
44
run: flet pack main.py --add-data "assets;assets" --name "EBDAS"
45
+ - name: "pack(Linux/MacOS)"
46
+ if: runner.os != 'Windows'
47
+ run: flet pack main.py --add-data "assets:assets" --name "EBDAS"
48
- name: "Linux/MacOS compress"
49
if: runner.os != 'Windows'
50
run: tar zcvf ${{matrix.binary-name}} dist
0 commit comments