From f7e55ddffcf4e3febab48e6c1133c57520c9c223 Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Thu, 22 Jan 2026 10:52:48 +0000 Subject: [PATCH] ci(release): use setup-nix action with nix develop Use the setup-nix composite action for consistent Nix setup across workflows, while still using nix develop for commands to leverage the full devShell environment. - Replace direct install-nix-action with setup-nix composite action - Add skip-uv-sync since nix develop handles dependencies - Keep nix develop --command for build commands --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a5bb2dd..9b90bfe 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -28,7 +28,7 @@ jobs: if: ${{ steps.release.outputs.release_created }} uses: ./.github/actions/setup-nix with: - skip-mock-server: "true" + skip-uv-sync: "true" - name: Update version in __init__.py if: ${{ steps.release.outputs.release_created }}