Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 1.8.0 #63

Merged
merged 16 commits into from
Dec 19, 2024
6 changes: 4 additions & 2 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
NugetApiUrl: ${{ secrets.NUGET_API_URL }}
NugetApiKey: ${{ secrets.NUGET_API_KEY }}

SignFile: ${{ secrets.SIGN_FILE }}
SignPassword: ${{ secrets.SIGN_PASSWORD }}
# SignFile: ${{ secrets.SIGN_FILE }}
# SignPassword: ${{ secrets.SIGN_PASSWORD }}
SignFile: ${{ secrets.SIGN_FILE_AZURE }}
SignPassword: ${{ secrets.SIGN_PASSWORD_AZURE }}

InstallationFiles: ${{ secrets.INSTALLATION_FILES }}
3 changes: 3 additions & 0 deletions Build/.nuke/build.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@
"allOf": [
{
"properties": {
"EnableForkedRepository": {
"type": "boolean"
},
"Folder": {
"type": "string"
},
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.8.0] / 2024-12-11 - 2024-12-19
### Features
- Enable sign files using `Azure Key Vault`. (`ricaun.Nuke`)
- Enable `IAssetRelease` to release assets before `GitRelease` and `GitPreRelease`. (`ricaun.Nuke`)
- Enable `SkipForked` to skip release if forked repository. (`ricaun.Nuke`)
### Updated
- Update `ricaun.Nuke` to `1.9.0`

## [1.7.2] / 2024-11-20
### Updated
- Update `ricaun.Nuke` to `1.8.2`
Expand Down Expand Up @@ -299,6 +307,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- First Release

[vNext]: ../../compare/1.0.0...HEAD
[1.8.0]: ../../compare/1.7.2...1.8.0
[1.7.2]: ../../compare/1.7.1...1.7.2
[1.7.1]: ../../compare/1.7.0...1.7.1
[1.7.0]: ../../compare/1.6.4...1.7.0
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.7.2</Version>
<Version>1.8.0</Version>
</PropertyGroup>
</Project>
5 changes: 1 addition & 4 deletions ricaun.Nuke.PackageBuilder/ricaun.Nuke.PackageBuilder.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
<PropertyGroup>
<PackageAssemblyVersion></PackageAssemblyVersion>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.Contains('Debug'))">
<PackageAssemblyVersion>.Dev</PackageAssemblyVersion>
</PropertyGroup>

<PropertyGroup>
<Company>ricaun</Company>
Expand Down Expand Up @@ -72,7 +69,7 @@
<PackageReference Include="Tools.InnoSetup" Version="6.2.0" IncludeAssets="All" />
<PackageReference Include="InnoSetup.ScriptBuilder" Version="*" />
<PackageReference Include="Autodesk.PackageBuilder" Version="*" />
<PackageReference Include="ricaun.Nuke" Version="*-*" />
<PackageReference Include="ricaun.Nuke" Version="*" />
</ItemGroup>

<!--
Expand Down