diff --git a/buildsystem/windows-build.yml b/buildsystem/windows-build.yml index 13f4d70879170ea0978c0923f9c32d3655377f36..5e8f02512ba638d4aa75c019e06cb1f3193fa5ad 100644 --- a/buildsystem/windows-build.yml +++ b/buildsystem/windows-build.yml @@ -6,7 +6,7 @@ steps: targetType: 'inline' script: | $msiFile = "gtk-sharp-2.12.45.msi" - Invoke-WebRequest "https://github.com/mfkl/gtk-sharp-msi/raw/main/$msiFile" -OutFile $msiFile + Invoke-WebRequest "https://github.com/mono/gtk-sharp/releases/download/2.12.45/$msiFile" -OutFile $msiFile $arguments = "/i `"$msiFile`" /quiet" Start-Process msiexec.exe -ArgumentList $arguments -Wait