15 Commits
0.0.1 ... 0.0.3

Author SHA1 Message Date
c23acb4472 powershell
Some checks failed
Build and Upload Release (Windows EXE) / Build Windows EXE (release) Failing after 3m41s
2025-09-16 14:33:17 -04:00
33fcd762f4 New Run On 2025-09-16 14:27:16 -04:00
ffbbf42d23 change runner location 2025-09-16 14:25:38 -04:00
8599690614 revert a51f341cf3
revert Attempt ubuntu action
2025-09-16 17:43:50 +00:00
572d328890 revert 9afa50820b
revert fix deploy
2025-09-16 17:43:38 +00:00
10ae32812f revert bd1c068e1c
revert add Ico
2025-09-16 17:43:28 +00:00
39cfe519c6 revert 900cb4c210
revert More Action Fixes
2025-09-16 17:43:16 +00:00
19a326f8bf revert 9223d5c5b2
revert Fix Workflow
2025-09-16 17:43:05 +00:00
8ea5de3f54 revert 992b629e24
revert Closer
2025-09-16 17:42:56 +00:00
992b629e24 Closer 2025-09-16 13:22:58 -04:00
9223d5c5b2 Fix Workflow 2025-09-16 13:21:18 -04:00
900cb4c210 More Action Fixes 2025-09-16 13:18:33 -04:00
bd1c068e1c add Ico 2025-09-16 13:15:25 -04:00
9afa50820b fix deploy 2025-09-16 13:09:37 -04:00
a51f341cf3 Attempt ubuntu action
Some checks failed
Build and Upload Release (Windows EXE from Ubuntu) / Build Windows EXE (PyInstaller via Docker on Ubuntu) (release) Failing after 3m58s
2025-09-16 12:54:21 -04:00

View File

@@ -8,7 +8,7 @@ on:
jobs: jobs:
build-windows-exe: build-windows-exe:
name: Build Windows EXE name: Build Windows EXE
runs-on: windows-latest runs-on: windows
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -19,14 +19,14 @@ jobs:
python-version: '3.11' python-version: '3.11'
- name: Install dependencies - name: Install dependencies
shell: pwsh shell: powershell
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
if (Test-Path requirements.txt) { pip install -r requirements.txt } if (Test-Path requirements.txt) { pip install -r requirements.txt }
pip install pyinstaller pip install pyinstaller
- name: Build EXE with PyInstaller - name: Build EXE with PyInstaller
shell: pwsh shell: powershell
run: | run: |
$ErrorActionPreference = 'Stop' $ErrorActionPreference = 'Stop'
# Include SeaLoader.png so the packaged app icon in-app works # Include SeaLoader.png so the packaged app icon in-app works
@@ -34,7 +34,7 @@ jobs:
pyinstaller --noconfirm --onefile --windowed sealoader_gui.py --name SeaLoader --add-data "$addData" pyinstaller --noconfirm --onefile --windowed sealoader_gui.py --name SeaLoader --add-data "$addData"
- name: Prepare artifact - name: Prepare artifact
shell: pwsh shell: powershell
run: | run: |
New-Item -ItemType Directory -Force -Path dist_upload | Out-Null New-Item -ItemType Directory -Force -Path dist_upload | Out-Null
Copy-Item dist\SeaLoader.exe dist_upload\SeaLoader.exe Copy-Item dist\SeaLoader.exe dist_upload\SeaLoader.exe
@@ -44,7 +44,7 @@ jobs:
- name: Upload asset to Release - name: Upload asset to Release
if: ${{ github.event_name == 'release' && github.event.action == 'published' }} if: ${{ github.event_name == 'release' && github.event.action == 'published' }}
shell: pwsh shell: powershell
env: env:
TOKEN: ${{ secrets.GITHUB_TOKEN }} TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }} REPO: ${{ github.repository }}
@@ -62,5 +62,5 @@ jobs:
name: SeaLoader_Windows_x64 name: SeaLoader_Windows_x64
path: | path: |
SeaLoader_Windows_x64.zip SeaLoader_Windows_x64.zip
dist/SeaLoader/SeaLoader.exe dist/SeaLoader.exe