Move ClaudeChecker builds and updates to Gitea
Build / macos (push) Failing after 14s
Build / windows (push) Successful in 37s

This commit is contained in:
2026-09-10 08:59:09 +02:00
parent e24d9cfb4a
commit 8cb6602b59
39 changed files with 3246 additions and 211 deletions
+10
View File
@@ -0,0 +1,10 @@
param([string]$Version = '0.0.1-beta.64')
$ErrorActionPreference = 'Stop'
if ($Version -notmatch '^\d+\.\d+\.\d+(-beta\.\d+)?$') { throw 'Invalid version' }
dotnet publish windows/ClaudeCheckerWindows.csproj -c Release -r win-x64 --self-contained true "-p:Version=$Version" -o publish
if ($LASTEXITCODE -ne 0) { throw 'dotnet publish failed' }
Copy-Item -Recurse -Force windows/Assets publish/Assets
& $env:INNO_SETUP_COMPILER "/DAppVersion=$Version" windows/installer.iss
if ($LASTEXITCODE -ne 0) { throw 'Inno Setup failed' }
if (!(Test-Path ClaudeChecker-Installer.exe)) { throw 'Installer missing' }
Get-FileHash ClaudeChecker-Installer.exe -Algorithm SHA256