From 05714f965791e8ba37da41e0ca1d67017a648236 Mon Sep 17 00:00:00 2001 From: Kevin Pfeifer Date: Fri, 17 May 2024 21:39:39 +0000 Subject: [PATCH] remove expression from conditions --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 86cb035..43e1fbd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,12 +66,12 @@ jobs: run: ./SDL3-CS/build.sh - name: Get Actions user id - if: ${{ runner.os }} == 'Linux' + if: runner.os == 'Linux' id: get_uid run: echo "uid=$(id -u $USER)" >> $GITHUB_OUTPUT - name: Correct Ownership in GITHUB_WORKSPACE directory - if: ${{ runner.os }} == 'Linux' + if: runner.os == 'Linux' uses: peter-murray/reset-workspace-ownership-action@v1 with: user_id: ${{ steps.get_uid.outputs.uid }}