File tree Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Expand file tree Collapse file tree 1 file changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -44,35 +44,31 @@ jobs:
44
44
scoop bucket add extras
45
45
scoop install nsis
46
46
47
- #
48
- # Compile application
49
- #
47
+
50
48
- name : Compile
51
49
run : |
52
50
make build-release
53
51
54
- #
55
- # Copy Qt DLLs, compiler runtime & application icon
56
- #
52
+
57
53
- name : Deploy
58
54
run : |
59
55
make install DESTDIR=release
60
- windeployqt --dir= release --compiler-runtime
56
+ windeployqt --dir=release --compiler-runtime
61
57
mkdir Banking_System_Client
62
- move release Banking_System_Client
58
+ Move-Item -Path release/* -Destination Banking_System_Client
63
59
64
60
#
65
61
# Create NSIS installer
66
62
#
67
63
- name : Make NSIS installer
68
64
run : |
69
- move Banking_System_Client deploy\windows\nsis\
65
+ Move-Item -Path Banking_System_Client -Destination deploy\windows\nsis\
70
66
cd deploy\windows\nsis
71
67
makensis /X"SetCompressor /FINAL lzma" setup.nsi
72
- ren *.exe Banking_System_Client-1.0.0-Windows.exe
68
+ Rename-Item -Path *.exe -NewName Banking_System_Client-1.0.0-Windows.exe
73
69
74
70
- name : Upload NSIS installer
75
71
uses : actions/upload-artifact@v2
76
72
with :
77
73
name : Banking_System_Client-1.0.0-Windows.exe
78
- path : deploy/windows/nsis/Banking_System_Client-1.0.0-Windows.exe
74
+ path : deploy/windows/nsis/Banking_System_Client-1.0.0-Windows.exe
You can’t perform that action at this time.
0 commit comments