New ICO better Help Text

This commit is contained in:
2025-09-16 14:45:51 -04:00
parent c23acb4472
commit ca4fd2c9d5
3 changed files with 8 additions and 12 deletions

View File

@@ -31,7 +31,7 @@ jobs:
$ErrorActionPreference = 'Stop'
# Include SeaLoader.png so the packaged app icon in-app works
$addData = "SeaLoader.png;." # Windows uses ';' for --add-data
pyinstaller --noconfirm --onefile --windowed sealoader_gui.py --name SeaLoader --add-data "$addData"
pyinstaller --noconfirm --onefile --windowed sealoader_gui.py --name SeaLoader --add-data "$addData" --icon SeaLoader.ico
- name: Prepare artifact
shell: powershell
@@ -56,11 +56,5 @@ jobs:
Write-Host "Uploading asset to $uploadUrl"
Invoke-RestMethod -Method Post -Uri $uploadUrl -Headers @{ Authorization = "token $env:TOKEN" } -ContentType "application/zip" -InFile "SeaLoader_Windows_x64.zip"
- name: Upload artifact (CI logs)
uses: actions/upload-artifact@v4
with:
name: SeaLoader_Windows_x64
path: |
SeaLoader_Windows_x64.zip
dist/SeaLoader.exe
# CI artifact upload removed for GHES compatibility