From 36cc1e81dc18a6164c839ab3a37364b81397dfca Mon Sep 17 00:00:00 2001 From: Gamosoft Date: Sun, 7 Dec 2025 11:32:47 +0100 Subject: [PATCH] open actions tab on tag push to monitor build status --- release.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/release.ps1 b/release.ps1 index 6425b6c..22e8742 100644 --- a/release.ps1 +++ b/release.ps1 @@ -146,3 +146,8 @@ git push origin "v$Version" Write-Host "`nRelease $Version completed successfully!" -ForegroundColor Green Write-Host "Tag: v$Version" -ForegroundColor Cyan +# Open GitHub Actions page to monitor build status +$actionsUrl = "https://github.com/gamosoft/NoteDiscovery/actions" +Write-Host "`nOpening GitHub Actions to monitor build status..." -ForegroundColor Yellow +Start-Process $actionsUrl +