From c2bac07939d647fbf4e406a3d34bc37b3528edd9 Mon Sep 17 00:00:00 2001 From: Dag Brattli Date: Wed, 22 Apr 2026 00:08:39 +0200 Subject: [PATCH] ci: drop --pre-release rc from publish workflow The publish workflow hardcoded --pre-release rc, so ShipIt kept cutting 5.0.0-rc.N release PRs (e.g. #261) even after the justfile recipe was updated. Remove the flag so ShipIt produces stable releases. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b4feede..1f6807e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,7 +32,7 @@ jobs: run: dotnet tool restore - name: ShipIt (Pull Request) - run: dotnet shipit --pre-release rc + run: dotnet shipit env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}