mirror of https://github.com/ppy/SDL3-CS.git
remove expression from conditions
This commit is contained in:
parent
453df16b5e
commit
05714f9657
|
|
@ -66,12 +66,12 @@ jobs:
|
||||||
run: ./SDL3-CS/build.sh
|
run: ./SDL3-CS/build.sh
|
||||||
|
|
||||||
- name: Get Actions user id
|
- name: Get Actions user id
|
||||||
if: ${{ runner.os }} == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
id: get_uid
|
id: get_uid
|
||||||
run: echo "uid=$(id -u $USER)" >> $GITHUB_OUTPUT
|
run: echo "uid=$(id -u $USER)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Correct Ownership in GITHUB_WORKSPACE directory
|
- name: Correct Ownership in GITHUB_WORKSPACE directory
|
||||||
if: ${{ runner.os }} == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
uses: peter-murray/reset-workspace-ownership-action@v1
|
uses: peter-murray/reset-workspace-ownership-action@v1
|
||||||
with:
|
with:
|
||||||
user_id: ${{ steps.get_uid.outputs.uid }}
|
user_id: ${{ steps.get_uid.outputs.uid }}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue