File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -33,10 +33,16 @@ jobs:
33
33
--main-class pl.bator.lso_list_generator.LSOListGeneratorApplication \
34
34
--type deb \
35
35
--icon src/main/resources/logo.png \
36
+ --dest .
37
+
38
+ - name : Upload DEB as artifact
39
+ uses : actions/upload-artifact@v4
40
+ with :
41
+ name : lso-deb
42
+ path : LSOListGenerator*.deb
36
43
37
-
38
44
build-windows :
39
- needs : [ build-linux ]
45
+ needs : [build-linux]
40
46
runs-on : windows-latest
41
47
steps :
42
48
- name : Checkout code
@@ -53,10 +59,17 @@ jobs:
53
59
54
60
- name : Create EXE package
55
61
run : |
56
- jpackage --input target\ --name LSOListGenerator --main-jar LSOListGenerator-1.0.jar --main-class pl.bator.lso_list_generator.LSOListGeneratorApplication --type exe --icon src\main\resources\logo.png
62
+ jpackage -input target\ --name LSOListGenerator --main-jar LSOListGenerator-1.0.jar --main-class pl.bator.lso_list_generator.LSOListGeneratorApplication --type exe --icon src\main\resources\logo.png --dest .
63
+ shell : pwsh
64
+
65
+ - name : Upload EXE as artifact
66
+ uses : actions/upload-artifact@v4
67
+ with :
68
+ name : lso-exe
69
+ path : LSOListGenerator*.exe
57
70
58
71
release :
59
- needs : [ build-linux, build-windows ]
72
+ needs : [build-linux, build-windows]
60
73
runs-on : ubuntu-latest
61
74
steps :
62
75
- name : Download DEB artifact
You can’t perform that action at this time.
0 commit comments