Skip to content

Commit

Permalink
ci: fix mac executable
Browse files Browse the repository at this point in the history
  • Loading branch information
nattb8 committed Nov 20, 2024
1 parent 5552b74 commit a351e7e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/**') }}
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit a351e7e

Please sign in to comment.