We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18e5ede commit 10ab894Copy full SHA for 10ab894
2 files changed
CHANGES.md
@@ -10,6 +10,8 @@ Most lines should begin with one of these words:
10
-->
11
12
## [1.0.3](https://github.com/sharpjs/Prequel/compare/release/1.0.2..release/1.0.3)
13
+- Fix packaging issues:
14
+ - Enable deterministic build.
15
16
## [1.0.2](https://github.com/sharpjs/Prequel/compare/release/1.0.1..release/1.0.2)
17
- Fix incorrect result or index-out-of-range exception when multiple variable
Directory.Build.props
@@ -45,6 +45,9 @@
45
<ImplicitUsings>true</ImplicitUsings>
46
<Nullable>enable</Nullable>
47
</PropertyGroup>
48
+ <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
49
+ <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
50
+ </PropertyGroup>
51
52
<!-- Packaging properties -->
53
<PropertyGroup>
0 commit comments