Skip to content

Commit 38c4f4c

Browse files
authored
Fix mac installer target (#37)
2 parents e0ecbf5 + 10295f8 commit 38c4f4c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
- windows-latest
2727
version:
2828
- latest # actual version
29-
- 2.4.1 # specified version
29+
# specified version
30+
- 2.4.1
31+
- 2.7.6
3032
cache: [true, false]
3133
gcc: [true, false]
3234
root-win-path: [true, false]

action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,10 @@ runs:
107107
shell: bash
108108
run: |
109109
unzip ${{ steps.cfg.outputs.filename }}
110-
sudo installer -store -pkg "PlaydateSDK.pkg" -target /
111-
cat ~/.Playdate/config
110+
mkdir -p ~/Developer
111+
sudo installer -pkg "PlaydateSDK.pkg" -target ~/Developer
112112
echo "root: $PLAYDATE_SDK_PATH"
113+
cat ~/.Playdate/config || echo "MISSED CONFIG"
113114
PLAYDATE_SDK_PATH="$(grep -E '^\s*SDKRoot' ~/.Playdate/config | head -n 1 | awk '{print $2}')"
114115
echo "PLAYDATE_SDK_PATH=$PLAYDATE_SDK_PATH" >> $GITHUB_ENV
115116

0 commit comments

Comments
 (0)