Skip to content

Commit ebc528d

Browse files
committed
Update path
1 parent cea9274 commit ebc528d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
id: versions
2828
run: dotnet run -c Release --project ChromeForTesting/ChromeForTesting.VersionManager
2929
env:
30-
VERSION_INCREMENT: '25'
30+
VERSION_INCREMENT: '26'
3131

3232
VerifyTagExists:
3333
needs:

ChromeForTesting/ChromeForTesting.Tests/ChromeForTesting.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="ChromeForTesting" Version="125.0.6422.78024" />
13+
<PackageReference Include="ChromeForTesting" Version="125.0.6422.78026" />
1414
<PackageReference Include="CliWrap" Version="3.6.6"/>
1515
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0"/>
1616
<PackageReference Include="NUnit" Version="4.1.0"/>

ChromeForTesting/ChromeForTesting/ChromeForTestingInstance.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ public static string ChromePath
1616
{
1717
(OS.Linux, _) => Path.Join([
1818
AbsoluteRootPath,
19+
RuntimeInformation.RuntimeIdentifier,
1920
"chrome-root",
2021
"chrome",
2122
"chrome-entry",
2223
]),
2324
(OS.MacOS, _) => Path.Join([
2425
AbsoluteRootPath,
26+
RuntimeInformation.RuntimeIdentifier,
2527
$"chrome-{ChromePlatform}",
2628
"Google Chrome for Testing.app",
2729
"Contents",
@@ -30,6 +32,7 @@ public static string ChromePath
3032
]),
3133
(OS.Windows, _) => Path.Join([
3234
AbsoluteRootPath,
35+
RuntimeInformation.RuntimeIdentifier,
3336
$"chrome-{ChromePlatform}",
3437
"chrome.exe"
3538
]),

0 commit comments

Comments
 (0)