[release] update base64 command (#7559)

Seems like a `-i` is now necessary for the command. Note that we recently startede using mac-mx machines.
This commit is contained in:
Powei Feng
2024-02-07 09:17:09 -08:00
parent 0774ce6b5e
commit cdd9c4aebe

View File

@@ -129,7 +129,7 @@ jobs:
- name: Sign sample-gltf-viewer
run: |
echo "${APK_KEYSTORE_BASE64}" > filament.jks.base64
base64 --decode filament.jks.base64 > filament.jks
base64 --decode -i filament.jks.base64 > filament.jks
BUILD_TOOLS_VERSION=$(ls ${ANDROID_HOME}/build-tools | sort -V | tail -n 1)
APKSIGNER=${ANDROID_HOME}/build-tools/${BUILD_TOOLS_VERSION}/apksigner
IN_FILE="out/sample-gltf-viewer-release.apk"