From d7805d60539b5f2c934b2ed2629fa89bc9c3bba0 Mon Sep 17 00:00:00 2001 From: 0x676e67 Date: Tue, 21 Oct 2025 12:57:44 +0800 Subject: [PATCH] Modify prerelease condition in CI workflow Updated prerelease condition to exclude 'alpha' branch. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f74f2500..39186781 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -340,5 +340,5 @@ jobs: uses: softprops/action-gh-release@v2 with: token: ${{ secrets.GITHUB_TOKEN }} - prerelease: ${{ contains(github.ref, 'alpha') || contains(github.ref, 'beta') || contains(github.ref, 'rc') }} + prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'rc') }} generate_release_notes: true