From 9bd3b44355ba7c500f3d2e029636c6d29ac5caab Mon Sep 17 00:00:00 2001 From: Michal Domanski <32363382+michal2612@users.noreply.github.com> Date: Tue, 23 Jun 2026 19:35:56 +0200 Subject: [PATCH] Improve readability of global.json creation command (#694) Updated the command to create global.json for better readability and execution. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 252321a..f7a0154 100644 --- a/README.md +++ b/README.md @@ -239,7 +239,8 @@ jobs: with: dotnet-version: ${{ matrix.dotnet }} - name: Create temporary global.json - run: echo '{"sdk":{"version": "${{ steps.stepid.outputs.dotnet-version }}"}}' > ./global.json + run: | + echo '{"sdk":{"version": "${{ steps.stepid.outputs.dotnet-version }}"}}' > ./global.json - name: Execute dotnet run: dotnet build ```