Skip to content

Commit

Permalink
ci:check
Browse files Browse the repository at this point in the history
  • Loading branch information
Maharavan Sundaram committed Jan 22, 2025
1 parent d45543a commit 8b92268
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/windows_installer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: COINES Installer-Windows

on:
push:
branches:
- '*'

jobs:
build:
runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Download and install Inno Setup
run: |
# Download Inno Setup installer
Invoke-WebRequest -Uri https://jrsoftware.org/isdl.php -OutFile InnoSetup.exe
# Install Inno Setup silently
Start-Process -FilePath .\InnoSetup.exe -ArgumentList "/VERYSILENT" -NoNewWindow -Wait
# Cleanup
Remove-Item .\InnoSetup.exe -Force
- name: COINES Installer - Windows
run: |
cd _installer_/Installer_Scripts/Windows
"C:\Program Files (x86)\Inno Setup 6\ISCC.exe" "COINES_SDK_PRM.iss"
2 changes: 1 addition & 1 deletion _installer_/Installer_Scripts/Windows/publishCoines.bat
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ copy %PROJ_DIR%\README.md %COINES_DIR%\README.md


::Create Installer
%INNO_TOOL_DIR%\ISCC.exe COINES_SDK_PRM.iss
ISCC.exe COINES_SDK_PRM.iss

:: Get Git Tag Description
for /F "tokens=* USEBACKQ" %%F in (`git describe --tags`) do (
Expand Down

0 comments on commit 8b92268

Please sign in to comment.