Skip to content

Commit 190dbe8

Browse files
author
avandras
committed
Do not create the GUI installer anymore
1 parent e0c6ec4 commit 190dbe8

File tree

3 files changed

+0
-23
lines changed

3 files changed

+0
-23
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,3 @@ jobs:
4343
asset_path: ./PES.zip
4444
asset_name: PES.zip
4545
asset_content_type: application/zip
46-
47-
- name: Upload Release Asset (exe)
48-
id: upload-release-asset-exe
49-
uses: actions/upload-release-asset@v1
50-
env:
51-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52-
with:
53-
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
54-
asset_path: ./Patroni-Env-Setup.exe
55-
asset_name: Patroni-Env-Setup.exe
56-
asset_content_type: application/vnd.microsoft.portable-executable

env.ps1

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,3 @@ $PYTHON_REF = "https://www.python.org/ftp/python/3.13.2/python-3.13.2-amd64.exe"
1111

1212
$SEVENZIP = "C:\Program Files\7-Zip\7z.exe"
1313

14-
$INNOTOOL = "C:\Program Files (x86)\Inno Setup 6"
15-
$ISCC = Join-Path $INNOTOOL "iscc.exe"
16-
$ISSFile = "installer\patroni.iss"

make.ps1

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -119,15 +119,6 @@ function Get-WinSW {
119119
}
120120

121121
function Export-Assets {
122-
Write-Host "`n--- Creating windows installer ---" -ForegroundColor blue
123-
if (-Not (Test-Path $INNOTOOL)) {
124-
Write-Host "$INNOTOOL does not exist" -ForegroundColor Red
125-
Write-Host "Please install Innotool and set the INNOTOOL environment variable." -ForegroundColor Red
126-
exit 1
127-
}
128-
& $ISCC $ISSFile
129-
Write-Host "`n--- Installer generated successfully ---" -ForegroundColor green
130-
131122
Write-Host "`n--- Prepare archive ---" -ForegroundColor blue
132123
Compress-ToZipFile "$MD" "$MD.zip"
133124
Write-Host "`n--- Archive compressed ---" -ForegroundColor green

0 commit comments

Comments
 (0)