Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dda6bf1002 | |||
| 821f119547 | |||
| a33430faa0 | |||
| 401d717adf | |||
| cfac39a838 | |||
| a408b0fd27 |
@@ -30,10 +30,40 @@ jobs:
|
||||
$issPath = "DellMonitorControl/MonitorControl.iss"
|
||||
(Get-Content $issPath) -replace '#define MyAppVersion ".*"', "#define MyAppVersion `"$version`"" | Set-Content $issPath
|
||||
|
||||
- name: Build Installer
|
||||
- name: List build output
|
||||
shell: cmd
|
||||
run: |
|
||||
cd DellMonitorControl && "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" MonitorControl.iss
|
||||
echo "Current directory:"
|
||||
cd
|
||||
echo "DellMonitorControl contents:"
|
||||
dir DellMonitorControl
|
||||
echo "DellMonitorControl\bin contents:"
|
||||
dir DellMonitorControl\bin
|
||||
echo "DellMonitorControl\bin\Release contents:"
|
||||
dir DellMonitorControl\bin\Release
|
||||
echo "DellMonitorControl\bin\Release\net9.0-windows contents:"
|
||||
dir DellMonitorControl\bin\Release\net9.0-windows
|
||||
|
||||
- name: Build Installer
|
||||
shell: cmd
|
||||
working-directory: DellMonitorControl
|
||||
run: |
|
||||
echo Current directory:
|
||||
cd
|
||||
echo.
|
||||
echo ISS file exists:
|
||||
if exist MonitorControl.iss (echo YES) else (echo NO)
|
||||
echo.
|
||||
echo Creating installer directory...
|
||||
mkdir installer 2>nul
|
||||
echo.
|
||||
echo Running Inno Setup...
|
||||
"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" MonitorControl.iss
|
||||
echo.
|
||||
echo ISCC exit code: %ERRORLEVEL%
|
||||
echo.
|
||||
echo Installer directory contents:
|
||||
dir installer
|
||||
|
||||
- name: Create Release
|
||||
shell: powershell
|
||||
|
||||
Reference in New Issue
Block a user