From dbdbf58b8db67df99c9cfee4dfb144a5b6ce9a44 Mon Sep 17 00:00:00 2001 From: Constrat <56174894+Constrat@users.noreply.github.com> Date: Wed, 21 May 2025 22:52:17 +0200 Subject: [PATCH] ci:: remove stale update_resources logic from version script --- tools/ResourceUpdater/version.ps1 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/ResourceUpdater/version.ps1 b/tools/ResourceUpdater/version.ps1 index 151ba9b8a1..a1fd305a02 100644 --- a/tools/ResourceUpdater/version.ps1 +++ b/tools/ResourceUpdater/version.ps1 @@ -1,6 +1,5 @@ $hasChanges = $false $hasPngChanges = $false -$hasVersionChanges = $false git add . @@ -45,7 +44,6 @@ else { $jsonFormatted = $jsonFormatted -replace " ", " " $jsonFormatted | Set-Content -Path $versionFile - $hasVersionChanges = $true Write-Output "Updated: $versionFile" } } @@ -58,7 +56,5 @@ else { Write-Output "Changes: $hasChanges" Write-Output "PNG Changes: $hasPngChanges" -Write-Output "Update Resources: $hasVersionChanges" Write-Output "changes=$hasChanges" >> $env:GITHUB_OUTPUT Write-Output "contains_png=$hasPngChanges" >> $env:GITHUB_OUTPUT -Write-Output "update_resources=$hasVersionChanges" >> $env:GITHUB_OUTPUT