From c230c92742ff6081f5512ea85cf7514169fa60e9 Mon Sep 17 00:00:00 2001 From: Romain <96626929+Romanitho@users.noreply.github.com> Date: Fri, 13 Sep 2024 23:44:45 +0200 Subject: [PATCH 1/2] Update README for V2 MSI --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index 2f17a7f..785b93f 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,7 @@ ![image](https://github.com/Romanitho/Winget-AutoUpdate/assets/96626929/0e738c7a-cbe4-4010-94f6-1e9165bc0d49) -[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/Romanitho/Winget-AutoUpdate?label=Latest%20Stable%20Release&style=flat-square)](https://github.com/Romanitho/Winget-AutoUpdate/releases/latest) -[![GitHub release (by tag)](https://img.shields.io/github/downloads/Romanitho/Winget-AutoUpdate/latest/WAU-Configurator.zip?label=Downloads&style=flat-square)](https://github.com/Romanitho/Winget-AutoUpdate/releases/latest) -[![GitHub release (by tag)](https://img.shields.io/github/downloads/Romanitho/Winget-AutoUpdate/latest/WAU.zip?label=Downloads&style=flat-square)](https://github.com/Romanitho/Winget-AutoUpdate/releases/latest) -[![GitHub release (by tag)](https://img.shields.io/github/downloads/Romanitho/Winget-AutoUpdate/latest/WAU_InstallCounter?label=Installations&style=flat-square)](https://github.com/Romanitho/Winget-AutoUpdate/releases/latest) +[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/Romanitho/Winget-AutoUpdate?label=Latest%20Stable%20Release&style=for-the-badge)](https://github.com/Romanitho/Winget-AutoUpdate/releases/latest) @@ -223,8 +220,5 @@ Feel free to give us any suggestions or optimizations in code and support us by #### WAU - GitHub [![GitHub release (release name instead of tag name)](https://img.shields.io/github/v/release/Romanitho/Winget-AutoUpdate?display_name=release&include_prereleases&label=Latest%20Release&style=flat-square)](https://github.com/Romanitho/Winget-AutoUpdate/releases/) -[![GitHub release (latest by SemVer including pre-releases)](https://img.shields.io/github/downloads-pre/Romanitho/Winget-AutoUpdate/latest/WAU-Configurator.zip?label=Downloads&style=flat-square)](https://github.com/Romanitho/Winget-AutoUpdate/releases/) -[![GitHub release (latest by SemVer including pre-releases)](https://img.shields.io/github/downloads-pre/Romanitho/Winget-AutoUpdate/latest/WAU.zip?label=Downloads&style=flat-square)](https://github.com/Romanitho/Winget-AutoUpdate/releases/) -[![GitHub release (latest by SemVer including pre-releases)](https://img.shields.io/github/downloads-pre/Romanitho/Winget-AutoUpdate/latest/WAU_InstallCounter?label=Installations&style=flat-square)](https://github.com/Romanitho/Winget-AutoUpdate/releases/) From f721715a458a4a9d2834f97131906afdaa96f04c Mon Sep 17 00:00:00 2001 From: Romain <96626929+Romanitho@users.noreply.github.com> Date: Fri, 13 Sep 2024 23:50:08 +0200 Subject: [PATCH 2/2] add "WAU " in release name --- .github/workflows/WAU-ReleaseBuilder.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/WAU-ReleaseBuilder.yml b/.github/workflows/WAU-ReleaseBuilder.yml index 465cf4a..f77810a 100644 --- a/.github/workflows/WAU-ReleaseBuilder.yml +++ b/.github/workflows/WAU-ReleaseBuilder.yml @@ -79,13 +79,13 @@ jobs: if ("${{ env.ReleaseType }}" -eq "Release") { $MsiVersion = $NextAutoSemver.Split("-")[0] $NextSemver = $NextAutoSemver.Split("-")[0] - $ReleaseName = $NextSemver + $ReleaseName = "WAU " + $NextSemver $Prerelease = 0 } else { $MsiVersion = $NextAutoSemver.Split("-")[0] $NextSemver = $NextAutoSemver.Replace("-0","-n") - $ReleaseName = $NextSemver + " [Nightly Build]" + $ReleaseName = "WAU " + $NextSemver + " [Nightly Build]" $Prerelease = 1 } echo "MSI version: $MsiVersion"