From a351e7eb531719cb47e42f65c8dbec259991b530 Mon Sep 17 00:00:00 2001 From: Natalie Bunduwongse Date: Wed, 20 Nov 2024 15:39:46 +1300 Subject: [PATCH] ci: fix mac executable --- .github/workflows/ui-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index 075289b0..7a4adae3 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -32,7 +32,6 @@ jobs: with: lfs: true - uses: actions/cache@v3 - if: ${{ matrix.targetPlatform != 'StandaloneOSX' }} with: path: Library key: Library-${{ matrix.targetPlatform }}-${{ hashFiles('sample/Assets/**', 'sample/Packages/**', 'sample/ProjectSettings/**') }} @@ -84,6 +83,9 @@ jobs: with: name: Build-${{ matrix.targetPlatform }} path: sample/Tests + - name: Make macOS artifact executable + if: ${{ matrix.targetPlatform == 'StandaloneOSX' }} + run: chmod +x sample/Tests/SampleApp.app/Contents/MacOS/* - uses: actions/setup-python@v4 with: python-version: "3.10"