From 06208221de515e75136c882b97dc7623487d17c8 Mon Sep 17 00:00:00 2001 From: cyan Date: Wed, 14 Aug 2024 13:41:11 +0200 Subject: [PATCH] fix cakewallet ci (#30) --- .github/workflows/cake_wallet.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cake_wallet.yaml b/.github/workflows/cake_wallet.yaml index 9ca355a..987a7cc 100644 --- a/.github/workflows/cake_wallet.yaml +++ b/.github/workflows/cake_wallet.yaml @@ -177,7 +177,7 @@ jobs: - name: Rename app run: | - echo -e "id=com.cakewallet.moneroc_${{ env.PR_NUMBER }}\nname=${{ github.ref_name }}" | tr '/-' '_' > /opt/android/cake_wallet/android/app.properties + echo -e "id=com.cakewallet.moneroc_${{ env.PR_NUMBER }}\nname=${{ github.ref_name }}" | sed 's/[^a-zA-Z0-9=\n.]//g' > /opt/android/cake_wallet/android/app.properties - name: Build run: | @@ -188,7 +188,7 @@ jobs: run: | cd /opt/android/cake_wallet/build/app/outputs/flutter-apk mkdir test-apk - cp app-arm64-v8a-release.apk "test-apk/$(echo ${{ github.ref_name }} | tr '/-' '_').apk" + cp app-arm64-v8a-release.apk "test-apk/$(echo ${{ github.ref_name }} | sed 's/[^a-zA-Z0-9]//g').apk" - name: Upload Artifact uses: kittaakos/upload-artifact-as-is@v0