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 529b2df commit e15200bCopy full SHA for e15200b
appveyor.yml
@@ -1,6 +1,7 @@
1
image:
2
-- visual studio 2019
3
-- ubuntu
+- Visual Studio 2019
+- macOS
4
+- Ubuntu
5
6
skip_branch_with_pr: true
7
@@ -18,18 +19,29 @@ for:
18
19
-
20
matrix:
21
only:
- - image: visual studio 2019
22
+ - image: Visual Studio 2019
23
24
after_build:
- - 7z a counter-windows.zip dist\*.exe
25
+ - 7z a counter-windows.zip %CD%\dist\*.exe
26
27
artifacts:
28
- path: counter-windows.zip
29
30
31
32
- - image: ubuntu
33
+ - image: macOS
34
+
35
+ after_build:
36
+ - tar -czvf counter-linux.tar.gz -C dist counter.app
37
38
+ artifacts:
39
+ - path: counter-macos.tar.gz
40
41
+-
42
+ matrix:
43
+ only:
44
+ - image: Ubuntu
45
46
47
- tar -czvf counter-linux.tar.gz -C dist counter
0 commit comments