From 2958d38a2c51c641ccdad931c0949058c889ab3d Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Tue, 16 Dec 2025 19:15:43 +0530 Subject: [PATCH] format update --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 315f5fb..24efc41 100644 --- a/README.md +++ b/README.md @@ -360,14 +360,10 @@ jobs: $arch = "${{ runner.arch }}".ToLower() echo "ARCH=$arch" | Out-File $env:GITHUB_ENV -Append # Sets CACHE_OS_SUFFIX per platform - - name: Set cache OS suffix (Linux/macOS) - if: runner.os != 'Windows' + - name: Set cache OS suffix for Linux + if: runner.os == 'Linux' shell: bash run: echo "CACHE_OS_SUFFIX=$ImageOS-" >> $GITHUB_ENV - - name: Set cache OS suffix (Windows) - if: runner.os == 'Windows' - shell: pwsh - run: echo "CACHE_OS_SUFFIX=" >> $GITHUB_ENV - name: Restore Go cache id: go-cache