From 8a2eb9bfa02cce91af7aca7537081c4f357bb70c Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Fri, 2 Apr 2021 15:19:06 +0900 Subject: [PATCH] Use DEVELOPER_DIR instead --- .github/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9247bde..fc7719c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,9 +10,6 @@ jobs: - name: Check out SDL sources run: | git clone --depth 1 https://github.com/ppy/SDL.git /tmp/SDL - - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: '10.3' - name: Build binaries run: | cd /tmp/SDL @@ -21,6 +18,7 @@ jobs: make install env: MACOSX_DEPLOYMENT_TARGET: '10.14' + DEVELOPER_DIR: /Applications/Xcode_10.3.app/Contents/Developer - name: copy built binary run: cp /usr/local/lib/libSDL2-2.0.0.dylib native/osx-x64/libSDL2.dylib - name: Create pull request