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"