-
Notifications
You must be signed in to change notification settings - Fork 3
/
appveyor.yml
70 lines (55 loc) · 1.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
image:
- Visual Studio 2019
- macOS
- Ubuntu
skip_branch_with_pr: true
stack: python 3.10
environment:
GITHUB_TOKEN:
secure: iL/1Mx78gXHkbeSqsj1N7TyM4pvz3sihozkTOA1PXmCF1FGBM2EzG1seaZ+ca4yZ
install:
- pip install -r requirements.txt
- pip install pyinstaller
build_script:
- flet pack main.py --name Flet-Colors-Browser --product-name Flet-Colors-Browser --product-version "2.0" --copyright "Copyright (c) 2022 TheEthicalBoy Inc."
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 Flet-Colors-Browser-windows.zip %CD%\dist\*.exe
artifacts:
- path: Flet-Colors-Browser-windows.zip
#
# macOS package
#
-
matrix:
only:
- image: macOS
after_build:
- tar -czvf Flet-Colors-Browser-macos.tar.gz -C dist Flet-Colors-Browser.app
artifacts:
- path: Flet-Colors-Browser-macos.tar.gz
#
# Linux package
#
-
matrix:
only:
- image: Ubuntu
after_build:
- tar -czvf Flet-Colors-Browser-linux.tar.gz -C dist Flet-Colors-Browser
artifacts:
- path: Flet-Colors-Browser-linux.tar.gz