We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 392f30f commit 4684c10Copy full SHA for 4684c10
.github/workflows/build.yml
@@ -1,6 +1,6 @@
1
name: Build and test
2
3
-on:
+on:
4
push:
5
branches:
6
- main
.github/workflows/release.yml
@@ -7,6 +7,9 @@ on:
7
8
jobs:
9
release:
10
+ env:
11
+ IsRelease: true
12
+
13
runs-on: ubuntu-latest
14
15
steps:
Directory.Build.props
@@ -12,7 +12,7 @@
<ItemGroup>
<PackageReference Include="Ionide.KeepAChangelog.Tasks" Version="0.1.8" />
- <PackageReference Include="Dotnet.ReproducibleBuilds" Version="1.1.1" />
+ <PackageReference Condition="'$(IsRelease)' == 'true'" Include="Dotnet.ReproducibleBuilds" Version="1.1.1" />
16
</ItemGroup>
17
18
</Project>
0 commit comments