Skip to content

Commit a351e7e

Browse files
committed
ci: fix mac executable
1 parent 5552b74 commit a351e7e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ui-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
with:
3333
lfs: true
3434
- uses: actions/cache@v3
35-
if: ${{ matrix.targetPlatform != 'StandaloneOSX' }}
3635
with:
3736
path: Library
3837
key: Library-${{ matrix.targetPlatform }}-${{ hashFiles('sample/Assets/**', 'sample/Packages/**', 'sample/ProjectSettings/**') }}
@@ -84,6 +83,9 @@ jobs:
8483
with:
8584
name: Build-${{ matrix.targetPlatform }}
8685
path: sample/Tests
86+
- name: Make macOS artifact executable
87+
if: ${{ matrix.targetPlatform == 'StandaloneOSX' }}
88+
run: chmod +x sample/Tests/SampleApp.app/Contents/MacOS/*
8789
- uses: actions/setup-python@v4
8890
with:
8991
python-version: "3.10"

0 commit comments

Comments
 (0)