Skip to content

Commit

Permalink
fix cakewallet ci
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCyjaneK committed Aug 6, 2024
1 parent bcb328a commit 1e7cf23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cake_wallet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]//g' > /opt/android/cake_wallet/android/app.properties
- name: Build
run: |
Expand All @@ -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
Expand Down

0 comments on commit 1e7cf23

Please sign in to comment.