From c28b76ad374bea21c9dac2965700a011922c6d25 Mon Sep 17 00:00:00 2001 From: Gordon Smith Date: Sun, 4 Feb 2024 07:47:44 +0000 Subject: [PATCH] fix: Force pre-relase to true on "next" release. Signed-off-by: Gordon Smith --- .github/workflows/test-and-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-and-publish.yml b/.github/workflows/test-and-publish.yml index d5f96b28..a5d66ca9 100644 --- a/.github/workflows/test-and-publish.yml +++ b/.github/workflows/test-and-publish.yml @@ -73,4 +73,4 @@ jobs: uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}" - prerelease: false + prerelease: ${{ contains(github.ref, '-next.') }}