diff --git a/.github/workflows/publish-beta.yml b/.github/workflows/publish-beta.yml index 1d07bb60..3bcf1ac9 100644 --- a/.github/workflows/publish-beta.yml +++ b/.github/workflows/publish-beta.yml @@ -318,6 +318,10 @@ jobs: $releaseNotes = "## Beta Release`n`nThis is a beta release." } + # Prepend beta update instructions to release notes + $betaInstructions = "To receive automatic beta updates, set the release channel to ``Beta`` under ``Advanced`` settings.`n`n" + $releaseNotes = $betaInstructions + $releaseNotes + # Update the release with new title and notes Write-Host "Updating release with title 'Beta' and new notes..." gh release edit $tagVersion --title "Beta" --notes "$releaseNotes"