CI: fixed deprecated method

This commit is contained in:
pelya
2023-05-19 14:32:37 +03:00
parent 543df95d62
commit 52e6f828dd
2 changed files with 3 additions and 2 deletions

View File

@@ -106,6 +106,7 @@ jobs:
fi
./sign.sh
./signBundle.sh
rm -f app-release.apk
env:
ANDROID_KEYSTORE_PASS: "${{secrets.ANDROID_KEYSTORE_PASS}}"
ANDROID_KEYSTORE_ALIAS: "${{secrets.ANDROID_KEYSTORE_ALIAS}}"

View File

@@ -68,14 +68,14 @@ jobs:
- name: Get ICU revision
id: icu-rev
run: echo "::set-output name=ICU_REV::`git -C project/jni/iconv/src rev-parse HEAD`:`echo ${ARCH_LIST} | sed 's/ /:/g'`"
run: echo "ICU_REV=`git -C project/jni/iconv/src rev-parse HEAD`:`echo ${ARCH_LIST} | sed 's/ /:/g'`" >> $GITHUB_ENV
- name: Copy ICU libraries from cache
uses: actions/cache@v2
id: cache-icu
with:
# The same SDL revision will produce the same libraries
key: ${{steps.icu-rev.outputs.ICU_REV}}
key: ${{env.ICU_REV}}
path: |
project/jni/iconv/include
project/jni/iconv/lib