From 4dc2d43204b3271958082d3f6cb15d38440b0535 Mon Sep 17 00:00:00 2001 From: Samuel Bouchet Date: Wed, 18 Mar 2026 19:10:46 +0100 Subject: [PATCH] Fix Loreline download URL: jeremyfa/loreline (not Loreline/loreline) --- .github/workflows/deploy-itch.yml | 2 +- init.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-itch.yml b/.github/workflows/deploy-itch.yml index 033d59c..038a40f 100644 --- a/.github/workflows/deploy-itch.yml +++ b/.github/workflows/deploy-itch.yml @@ -18,7 +18,7 @@ jobs: - name: Download Loreline dependency run: | mkdir -p lib - curl -sL https://github.com/Loreline/loreline/releases/download/v0.7.1/loreline-csharp.zip -o /tmp/loreline.zip + curl -sL https://github.com/jeremyfa/loreline/releases/download/v0.7.1/loreline-csharp.zip -o /tmp/loreline.zip unzip -o /tmp/loreline.zip -d lib/ ls -la lib/Loreline.dll diff --git a/init.ps1 b/init.ps1 index 5c96afc..7ecdee6 100644 --- a/init.ps1 +++ b/init.ps1 @@ -6,7 +6,7 @@ $ErrorActionPreference = "Stop" $LorelineVersion = "0.7.1" -$LorelineZipUrl = "https://github.com/Loreline/loreline/releases/download/v$LorelineVersion/loreline-csharp.zip" +$LorelineZipUrl = "https://github.com/jeremyfa/loreline/releases/download/v$LorelineVersion/loreline-csharp.zip" $LibDir = Join-Path $PSScriptRoot "lib" $LorelineDll = Join-Path $LibDir "Loreline.dll" $TempZip = Join-Path $LibDir "loreline-csharp.zip"