From fc847631d3107fd100c500a844442a942de0cd30 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sun, 12 Oct 2025 03:57:08 -0700 Subject: [PATCH] move prerelease set to new step --- .github/workflows/publish-beta.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/publish-beta.yml b/.github/workflows/publish-beta.yml index 7779326f..92dd4e40 100644 --- a/.github/workflows/publish-beta.yml +++ b/.github/workflows/publish-beta.yml @@ -323,3 +323,10 @@ jobs: } else { Write-Host "No release found with tag $tagVersion" } + - name: Set release as prerelease + shell: pwsh + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + gh release edit $tagVersion --prerelease + Write-Host "Successfully set release as prerelease"