Skip to content

Commit af824b8

Browse files
Use CI
1 parent bb69034 commit af824b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

msbuild/props/SixLabors.Global.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
<!-- Ensure deterministic builds work when triggered against individual projects. -->
4949
<!-- https://github.com/dotnet/roslyn/issues/37379#issuecomment-513371985 -->
50-
<ItemGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
50+
<ItemGroup Condition="'$(CI)' == 'true'">
5151
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
5252
</ItemGroup>
5353

msbuild/props/SixLabors.Src.props

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

1111
<!-- Add deterministic builds in CI .-->
12-
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
12+
<PropertyGroup Condition="'$(CI)' == 'true'">
1313
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
1414
<EmbedUntrackedSources>true</EmbedUntrackedSources>
1515
</PropertyGroup>

0 commit comments

Comments
 (0)