From 4f34dcb57a7d797e75465350c6276cda789e7ac2 Mon Sep 17 00:00:00 2001 From: Michal Domanski <32363382+michal2612@users.noreply.github.com> Date: Fri, 16 Jan 2026 14:25:22 +0100 Subject: [PATCH] Improve readability of global.json creation command 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 8a56bfdb8..3b842c48b 100644 --- a/README.md +++ b/README.md @@ -184,7 +184,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 ```