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

chore(releases): Improve instructions on release page and link to Doc… #1401

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -378,16 +378,19 @@ stages:
inputs:
gitHubConnection: github.com_rnwood
repositoryName: rnwood/smtp4dev
action: create
title: $(tag)
tag: $(tag)
tagSource: userSpecifiedTag
isDraft: false
releaseNotesSource: inline
addChangeLog: true
releaseNotesInline: |

[See full installation instructions and options](/~https://github.com/rnwood/smtp4dev/wiki/Installation)

File Name | Description
-- | --
[Docker rnwood/smtp4dev:$(tag)](https://hub.docker.com/r/rnwood/smtp4dev/tags?page=&page_size=&ordering=&name=$(tag)) | Docker image (Linux and Windows)
[.NET tool Rnwood.Smtp4dev $(tag)](https://www.nuget.org/packages/Rnwood.Smtp4dev/$(tag)) | .NET tool
[Rnwood.Smtp4dev-win-x64-$(tag).zip](../../releases/download/$(tag)/Rnwood.Smtp4dev-win-x64-$(tag).zip) | Windows x64 binary standalone - Server edition
[Rnwood.Smtp4dev.Desktop-win-x64-$(tag).zip](../../releases/download/$(tag)/Rnwood.Smtp4dev.Desktop-win-x64-$(tag).zip) | Windows x64 binary standalone - Desktop app edition.
[Rnwood.Smtp4dev-win-arm64-$(tag).zip](../../releases/download/$(tag)/Rnwood.Smtp4dev-win-arm64-$(tag).zip) | Windows ARM 62-bit binary standalone
Expand All @@ -396,9 +399,13 @@ stages:
[Rnwood.Smtp4dev-noruntime-$(tag).zip](../../releases/download/$(tag)/Rnwood.Smtp4dev-noruntime-$(tag).zip) | Architecture independent version. Should run on any platform where the .NET 8.0 (or greater) runtime is installed

${{ if variables['isreleasebuild'] }}:
action: edit
isDraft: true
isPreRelease: false
changeLogCompareToRelease: lastFullRelease
${{ if not(variables['isreleasebuild']) }}:
action: create
isDraft: true
isPreRelease: true
changeLogCompareToRelease: lastNonDraftRelease

Expand Down