From 4396b0ca5dc981dd6ea053086c816fe1d11a3cdc Mon Sep 17 00:00:00 2001 From: amd64fox <62529699+amd64fox@users.noreply.github.com> Date: Wed, 15 Jan 2025 17:04:31 +0300 Subject: [PATCH] x86 => x64 --- .github/workflows/check_spotx.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check_spotx.yml b/.github/workflows/check_spotx.yml index a76a22f..fa86f7f 100644 --- a/.github/workflows/check_spotx.yml +++ b/.github/workflows/check_spotx.yml @@ -19,10 +19,10 @@ jobs: # Get a link to the x86 installer for the first version $firstVersion = $resp.PSObject.Properties.Name | Select-Object -First 1 - $x86InstallerUrl = $resp.$firstVersion.links.win.x86 + $x64InstallerUrl = $resp.$firstVersion.links.win.x64 # Regex to find the desired part of the link - $regex = [regex]::Match($x86InstallerUrl, "spotify_installer-(.+?)\.exe") + $regex = [regex]::Match($x64InstallerUrl, "spotify_installer-(.+?)\.exe") $version = $regex.Groups[1].Value # Incoming parameters