Skip to content

Commit

Permalink
גרסת פורטבל, תיקון שם מתקין
Browse files Browse the repository at this point in the history
  • Loading branch information
NHLOCAL committed Jun 23, 2024
1 parent fdf0798 commit a497b15
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/publish-installer.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Installer
name: Publish Installer and Portable Version

on:
push:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
DisableProgramGroupPage=yes
LicenseFile="license.md"
PrivilegesRequired=lowest
OutputBaseFilename=מסדר הסינגלים-{#MyAppVersion}
OutputBaseFilename=singles-sorter-installer-{#MyAppVersion}
SetupIconFile=src\core\assets\icon.ico
SolidCompression=yes
Compression=lzma2/ultra64
Expand Down Expand Up @@ -86,6 +86,14 @@ jobs:
run: |
& 'C:\Program Files (x86)\Inno Setup 6\ISCC.exe' inno_setup_script.iss
- name: Create Portable Version
run: |
New-Item -ItemType Directory -Force -Path portable
Copy-Item -Path dist\main.exe -Destination portable\
Copy-Item -Path src\core\app\* -Destination portable\app\ -Recurse
Copy-Item -Path src\core\assets\icon.png -Destination portable\assets\
Compress-Archive -Path portable\* -DestinationPath singles-sorter-portable-${{ steps.get_version.outputs.VERSION }}.zip
- name: Create Release
uses: softprops/[email protected]
env:
Expand All @@ -96,5 +104,5 @@ jobs:
draft: true
prerelease: true
files: |
dist/main.exe
Output/מסדר הסינגלים-${{ steps.get_version.outputs.VERSION }}.exe
Output/singles-sorter-installer-${{ steps.get_version.outputs.VERSION }}.exe
singles-sorter-portable-${{ steps.get_version.outputs.VERSION }}.zip

0 comments on commit a497b15

Please sign in to comment.