-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
55 lines (43 loc) · 1.03 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
image:
- Visual Studio 2019
- macOS
skip_branch_with_pr: true
stack: python 3.10
environment:
GITHUB_TOKEN:
secure: cq5sCIvjUPBY6V+SOp37WUp2wVX0g0XpSdAEg9sByCNvhKeGI+JWLSP8cjcligrB+oHCUyJVnWflZn00Tw5qjg5DgUHFysqZN1hW+QuCJa2fQgrgmgISVQOn3ol96GDD
install:
- pip install -r requirements.txt
- pip install pyinstaller pillow
build_script:
- flet pack main.py --name DesignCTER --icon assets/icon.png --product-name DesignCTER --product-version "0.2.0" --copyright "Copyright (c) 2024 Lightbridge-KS."
test: off
# Publish artifacts to GitHub Releases on "tag" builds
deploy:
provider: GitHub
auth_token: $(GITHUB_TOKEN)
on:
APPVEYOR_REPO_TAG: true
#
# Windows package
#
for:
-
matrix:
only:
- image: Visual Studio 2019
after_build:
- 7z a DesignCTER-windows.zip %CD%\dist\*.exe
artifacts:
- path: DesignCTER-windows.zip
#
# macOS package
#
-
matrix:
only:
- image: macOS
after_build:
- tar -czvf DesignCTER-macos.tar.gz -C dist DesignCTER.app
artifacts:
- path: DesignCTER-macos.tar.gz