Skip to content

Commit 2293c37

Browse files
committed
[fix] macos, linuxのpack処理を追加
1 parent 4fe3902 commit 2293c37

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,12 @@ jobs:
3939
python-version: 3.11.7
4040
cache: "pip"
4141
- run: pip install -r requirements.txt
42-
- name: "pack"
42+
- name: "pack(Windows)"
4343
if: runner.os == 'Windows'
4444
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"
4548
- name: "Linux/MacOS compress"
4649
if: runner.os != 'Windows'
4750
run: tar zcvf ${{matrix.binary-name}} dist

0 commit comments

Comments
 (0)