Update architecture default as runner.arch (#153)

* Update architecture default as `runner.arch`

* Update to convert `ARCH` as lowercase

* Refactor for `ARCH` variable
This commit is contained in:
Jiun Kim
2022-04-29 09:52:26 +09:00
committed by GitHub
parent cf0b7b2cac
commit 0f2cd3391b
2 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ inputs:
architecture:
description: 'The architecture of Flutter SDK executable (x64 or arm64)'
required: false
default: 'x64'
default: ${{ runner.arch }}
runs:
using: 'composite'
steps:

View File

@@ -95,7 +95,7 @@ done
CHANNEL="${@:$OPTIND:1}"
VERSION="${@:$OPTIND+1:1}"
ARCH="${@:$OPTIND+2:1}"
ARCH=$(echo "${@:$OPTIND+2:1}" | awk '{print tolower($0)}')
SDK_CACHE="$(transform_path ${CACHE_PATH})"
PUB_CACHE="$(transform_path ${CACHE_PATH}/.pub-cache)"