Compare commits

...

4 Commits

Author SHA1 Message Date
Youwes09 6a8b6e7f93 Fix: Inject Bundle Resources Via --config Flag 2026-03-20 21:34:42 -05:00
Youwes09 a452cdc2e3 Fix: Branch Input to Windows Workflow 2026-03-20 21:25:23 -05:00
Youwes09 71a6eb02b5 Fix: Use jq in Workflow 2026-03-20 21:22:52 -05:00
Youwes09 50e981574a Add: Windows Build Workflow 2026-03-20 21:16:11 -05:00
+23 -32
View File
@@ -4,8 +4,12 @@ on:
workflow_dispatch:
inputs:
version:
description: "Version to build (e.g. 0.3.0)"
description: "Version to build (e.g. 0.4.0)"
required: true
branch:
description: "Branch to build (e.g. svelte-rewrite)"
required: false
default: "main"
jobs:
frontend:
@@ -13,6 +17,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}
- uses: pnpm/action-setup@v4
with:
@@ -43,6 +49,8 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}
- name: Download frontend dist
uses: actions/download-artifact@v4
@@ -81,55 +89,36 @@ jobs:
echo "ab6687d278e0dd0984f67abbc853511a7e764f84b126a35d09bfd9b0307321ff suwayomi-windows.zip" | sha256sum -c -
unzip -q suwayomi-windows.zip -d suwayomi-extracted-raw
unzip -q suwayomi-windows.zip -d suwayomi-raw
# Detect whether the zip has a single top-level directory wrapper.
# If exactly one entry exists at depth-1 and it is a directory, strip it.
TOP_DIRS=$(find suwayomi-extracted-raw -mindepth 1 -maxdepth 1 -type d)
TOP_FILES=$(find suwayomi-extracted-raw -mindepth 1 -maxdepth 1 -type f)
TOP_DIRS=$(find suwayomi-raw -mindepth 1 -maxdepth 1 -type d)
TOP_FILES=$(find suwayomi-raw -mindepth 1 -maxdepth 1 -type f)
TOP_DIR_COUNT=$(echo "$TOP_DIRS" | grep -c . || true)
mkdir -p suwayomi-extracted
if [ "$TOP_DIR_COUNT" -eq 1 ] && [ -z "$TOP_FILES" ]; then
# Single wrapping directory — strip it
mv "$TOP_DIRS"/* suwayomi-extracted/
else
# Files already at root level — move everything as-is
mv suwayomi-extracted-raw/* suwayomi-extracted/
mv suwayomi-raw/* suwayomi-extracted/
fi
- name: Inspect Suwayomi launcher
shell: bash
run: |
echo "=== Top-level contents ==="
ls -la suwayomi-extracted/
echo "=== All .exe files ==="
find suwayomi-extracted -name "*.exe" | head -20
echo "=== All .cmd/.bat files ==="
find suwayomi-extracted -name "*.cmd" -o -name "*.bat" | head -20
- name: Stage Suwayomi sidecar
- name: Stage Suwayomi bundle
shell: bash
run: |
mkdir -p src-tauri/binaries
# The Windows bundle has no standalone launcher exe — it ships
# "Suwayomi Launcher.bat" which calls jre\bin\javaw.exe -jar Suwayomi-Launcher.jar.
# Tauri sidecars must be real executables, so we stage javaw.exe as the
# sidecar. lib.rs will invoke it with the correct -jar + working-dir args.
JAVAW=$(find suwayomi-extracted -path "*/jre/bin/javaw.exe" | head -1)
if [ -z "$JAVAW" ]; then
echo "ERROR: could not find jre/bin/javaw.exe"
ls -lR suwayomi-extracted/
echo "ERROR: could not find jre/bin/javaw.exe — bundle contents:"
find suwayomi-extracted -type f | head -40
exit 1
fi
echo "Using javaw: $JAVAW"
cp "$JAVAW" "src-tauri/binaries/suwayomi-server-x86_64-pc-windows-msvc.exe"
echo "Found javaw: $JAVAW"
# Copy the full bundle so the .jar and jre/ tree are available at runtime.
# lib.rs sets the working directory to this folder before spawning.
# Copy full bundle so jar + jre tree are available at runtime.
# lib.rs looks for suwayomi-bundle/jre/bin/javaw.exe in the resource dir.
cp -r suwayomi-extracted src-tauri/binaries/suwayomi-bundle
- name: Patch tauri.conf.json for CI
@@ -142,11 +131,13 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: --target x86_64-pc-windows-msvc
args: >-
--target x86_64-pc-windows-msvc
--config '{"bundle":{"resources":["binaries/suwayomi-bundle/**"]}}'
- name: Upload Windows installer
uses: actions/upload-artifact@v4
with:
name: moku-windows-x64
path: src-tauri/target/x86_64-pc-windows-msvc/release/bundle/nsis/*.exe
retention-days: 7
retention-days: 7