File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,9 @@ https://github.com/geode-sdk/build-geode-mod/tree/main/examples
40
40
# Default: false
41
41
combine : ' '
42
42
43
- # Geode target to build for. Can be either "Win32 ", "MacOS", "Android32" or "Android64".
43
+ # Geode target to build for. Can be either "Win64 ", "MacOS", "Android32" or "Android64".
44
44
# Defaults to what is appropriate for the current platform, so:
45
- # Defaults to Win32 on windows runners
45
+ # Defaults to Win64 on windows runners
46
46
# Defaults to MacOS on macOS runners
47
47
# Defaults to Android64 on linux runners
48
48
target : ' '
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ inputs:
31
31
required : false
32
32
default : false
33
33
target :
34
- description : Geode target to build for. Can be either "Win32 ", "MacOS", "Android32" or "Android64".
34
+ description : Geode target to build for. Can be either "Win64 ", "MacOS", "Android32" or "Android64".
35
35
required : false
36
36
default : " "
37
37
bindings :
@@ -75,13 +75,13 @@ runs:
75
75
id : platform
76
76
shell : bash
77
77
run : |
78
- DEFAULT_TARGET=Win32
78
+ DEFAULT_TARGET=Win64
79
79
if [ "$RUNNER_OS" = "Linux" ]; then
80
80
ID=linux
81
81
DEFAULT_TARGET=Android64
82
82
elif [ "$RUNNER_OS" = "Windows" ]; then
83
83
ID=win
84
- DEFAULT_TARGET=Win32
84
+ DEFAULT_TARGET=Win64
85
85
elif [ "$RUNNER_OS" = "macOS" ]; then
86
86
ID=mac
87
87
DEFAULT_TARGET=MacOS
96
96
OUTPUT_ID=android32
97
97
elif [ "$TARGET" = "Android64" ]; then
98
98
OUTPUT_ID=android64
99
- elif [ "$TARGET" = "Win32 " ]; then
99
+ elif [ "$TARGET" = "Win64 " ]; then
100
100
OUTPUT_ID=win
101
101
elif [ "$TARGET" = "MacOS" ]; then
102
102
OUTPUT_ID=mac
You can’t perform that action at this time.
0 commit comments