Skip to content

Commit

Permalink
win32 -> win64
Browse files Browse the repository at this point in the history
  • Loading branch information
matcool authored Jun 10, 2024
1 parent d22a0b5 commit bddd5bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ https://github.com/geode-sdk/build-geode-mod/tree/main/examples
# Default: false
combine: ''

# Geode target to build for. Can be either "Win32", "MacOS", "Android32" or "Android64".
# Geode target to build for. Can be either "Win64", "MacOS", "Android32" or "Android64".
# Defaults to what is appropriate for the current platform, so:
# Defaults to Win32 on windows runners
# Defaults to Win64 on windows runners
# Defaults to MacOS on macOS runners
# Defaults to Android64 on linux runners
target: ''
Expand Down
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ inputs:
required: false
default: false
target:
description: Geode target to build for. Can be either "Win32", "MacOS", "Android32" or "Android64".
description: Geode target to build for. Can be either "Win64", "MacOS", "Android32" or "Android64".
required: false
default: ""
bindings:
Expand Down Expand Up @@ -75,13 +75,13 @@ runs:
id: platform
shell: bash
run: |
DEFAULT_TARGET=Win32
DEFAULT_TARGET=Win64
if [ "$RUNNER_OS" = "Linux" ]; then
ID=linux
DEFAULT_TARGET=Android64
elif [ "$RUNNER_OS" = "Windows" ]; then
ID=win
DEFAULT_TARGET=Win32
DEFAULT_TARGET=Win64
elif [ "$RUNNER_OS" = "macOS" ]; then
ID=mac
DEFAULT_TARGET=MacOS
Expand All @@ -96,7 +96,7 @@ runs:
OUTPUT_ID=android32
elif [ "$TARGET" = "Android64" ]; then
OUTPUT_ID=android64
elif [ "$TARGET" = "Win32" ]; then
elif [ "$TARGET" = "Win64" ]; then
OUTPUT_ID=win
elif [ "$TARGET" = "MacOS" ]; then
OUTPUT_ID=mac
Expand Down

0 comments on commit bddd5bc

Please sign in to comment.